Changeset 10755 for trunk/wp-includes/functions.php
- Timestamp:
- 03/10/2009 03:24:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r10753 r10755 3110 3110 $pad = ' '; 3111 3111 3112 $continents = array('Africa', 'America', 'Antarctica', 'Arctic', 'Asia', 'Atlantic', 'Australia', 'Europe', 'Indian', 'Pacific', 'Etc'); 3113 3112 3114 if ( empty($selectedzone) ) 3113 3115 $structure .= '<option selected="selected" value="">' . __('Select a city') . "</option>\n"; 3114 3116 foreach ( $zonen as $zone ) { 3115 3117 extract($zone); 3118 if ( ! in_array($continent, $continents) ) 3119 continue; 3116 3120 if ( empty($selectcontinent) && !empty($city) ) { 3117 3121 $selectcontinent = $continent;
Note: See TracChangeset
for help on using the changeset viewer.