diff --git src/wp-admin/options-general.php src/wp-admin/options-general.php
index cbb7d2f..3dbfe7f 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> |
| 323 | <?php if ( get_option( 'start_of_week' ) !== _x( '1', 'start of week' ) ) : ?> |
320 | 324 | <tr> |
321 | 325 | <th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th> |
322 | 326 | <td><select name="start_of_week" id="start_of_week"> |
… |
… |
endfor; |
333 | 337 | ?> |
334 | 338 | </select></td> |
335 | 339 | </tr> |
| 340 | <?php endif; ?> |
336 | 341 | <?php do_settings_fields('general', 'default'); ?> |
337 | 342 | |
338 | 343 | <?php |