diff --git src/wp-admin/options-general.php src/wp-admin/options-general.php
index cbb7d2f..726cb83 100644
|
|
if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?> |
167 | 167 | </td> |
168 | 168 | </tr> |
169 | 169 | <?php } ?> |
| 170 | </table> |
| 171 | <h3 class="title"><?php _e( 'Locale' ); ?></h3> |
| 172 | <table class="form-table"> |
170 | 173 | <tr> |
171 | 174 | <?php |
172 | 175 | $current_offset = get_option('gmt_offset'); |
… |
… |
if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists |
317 | 320 | </fieldset> |
318 | 321 | </td> |
319 | 322 | </tr> |
320 | | <tr> |
321 | | <th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th> |
322 | | <td><select name="start_of_week" id="start_of_week"> |
323 | | <?php |
324 | | /** |
325 | | * @global WP_Locale $wp_locale |
326 | | */ |
327 | | global $wp_locale; |
328 | | |
329 | | for ($day_index = 0; $day_index <= 6; $day_index++) : |
330 | | $selected = (get_option('start_of_week') == $day_index) ? 'selected="selected"' : ''; |
331 | | echo "\n\t<option value='" . esc_attr($day_index) . "' $selected>" . $wp_locale->get_weekday($day_index) . '</option>'; |
332 | | endfor; |
333 | | ?> |
334 | | </select></td> |
335 | | </tr> |
336 | 323 | <?php do_settings_fields('general', 'default'); ?> |
337 | 324 | |
338 | 325 | <?php |