Improved IF statements for DXCC US when dealing with tq8
这个提交包含在:
		
							父节点
							
								
									f056e3f9a9
								
							
						
					
					
						当前提交
						9fce8fe76c
					
				
					共有  1 个文件被更改,包括 4 次插入 和 4 次删除
				
			
		|  | @ -26,9 +26,9 @@ $cert2 = str_replace("-----END CERTIFICATE-----", "", $cert1); | ||||||
| 
 | 
 | ||||||
| <?php if(isset($station_profile->station_iota)) { ?><IOTA:<?php echo strlen($station_profile->station_iota); ?>><?php echo $station_profile->station_iota; ?><?php } ?>
 | <?php if(isset($station_profile->station_iota)) { ?><IOTA:<?php echo strlen($station_profile->station_iota); ?>><?php echo $station_profile->station_iota; ?><?php } ?>
 | ||||||
| 
 | 
 | ||||||
| <?php if($station_profile->state != "" && $station_profile->station_country = "UNITED STATES OF AMERICA") { ?><US_STATE:<?php echo strlen($station_profile->state); ?>><?php echo $station_profile->state; ?><?php } ?>
 | <?php if($station_profile->state != "" && $station_profile->station_country == "UNITED STATES OF AMERICA") { ?><US_STATE:<?php echo strlen($station_profile->state); ?>><?php echo $station_profile->state; ?><?php } ?>
 | ||||||
| 
 | 
 | ||||||
| <?php if($station_profile->station_cnty != ""  && $station_profile->station_country = "UNITED STATES OF AMERICA") { ?><US_COUNTY:<?php echo strlen($station_profile->station_cnty); ?>><?php echo $station_profile->station_cnty; ?><?php } ?>
 | <?php if($station_profile->station_cnty != ""  && $station_profile->station_country == "UNITED STATES OF AMERICA") { ?><US_COUNTY:<?php echo strlen($station_profile->station_cnty); ?>><?php echo $station_profile->station_cnty; ?><?php } ?>
 | ||||||
| 
 | 
 | ||||||
| <eor> | <eor> | ||||||
| 
 | 
 | ||||||
|  | @ -80,11 +80,11 @@ if($station_profile->station_itu) { | ||||||
| 	$sign_string .= $station_profile->station_itu; | 	$sign_string .= $station_profile->station_itu; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| if($station_profile->station_cnty != "" && $station_profile->station_country = "UNITED STATES OF AMERICA") { | if($station_profile->station_cnty != "" && $station_profile->station_country == "UNITED STATES OF AMERICA") { | ||||||
| 	$sign_string .= strtoupper($station_profile->station_cnty); | 	$sign_string .= strtoupper($station_profile->station_cnty); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| if($station_profile->state != "" && $station_profile->station_country = "UNITED STATES OF AMERICA") { | if($station_profile->state != "" && $station_profile->station_country == "UNITED STATES OF AMERICA") { | ||||||
| 	$sign_string .= strtoupper($station_profile->state); | 	$sign_string .= strtoupper($station_profile->state); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		正在加载…
	
		在新工单中引用