~canonical-sysadmins/wordpress/4.8.3

« back to all changes in this revision

Viewing changes to wp-admin/options-general.php

  • Committer: Ryan Finnie
  • Date: 2015-08-31 16:09:47 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: ryan.finnie@canonical.com-20150831160947-1h6rfxby9z1ec62u
Merge WP4.3 from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
?>
110
110
 
111
111
<div class="wrap">
112
 
<h2><?php echo esc_html( $title ); ?></h2>
 
112
<h1><?php echo esc_html( $title ); ?></h1>
113
113
 
114
114
<form method="post" action="options.php" novalidate="novalidate">
115
115
<?php settings_fields('general'); ?>
321
321
<th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th>
322
322
<td><select name="start_of_week" id="start_of_week">
323
323
<?php
 
324
/**
 
325
 * @global WP_Locale $wp_locale
 
326
 */
324
327
global $wp_locale;
325
328
 
326
329
for ($day_index = 0; $day_index <= 6; $day_index++) :