diff -r c7c34916027a -r 177826044cd9 wp/wp-admin/options-general.php --- a/wp/wp-admin/options-general.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-admin/options-general.php Mon Oct 14 18:28:13 2019 +0200 @@ -12,38 +12,41 @@ /** WordPress Translation Installation API */ require_once( ABSPATH . 'wp-admin/includes/translation-install.php' ); -if ( ! current_user_can( 'manage_options' ) ) +if ( ! current_user_can( 'manage_options' ) ) { wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) ); +} -$title = __('General Settings'); +$title = __( 'General Settings' ); $parent_file = 'options-general.php'; /* translators: date and time format for exact current time, mainly about timezones, see https://secure.php.net/date */ -$timezone_format = _x('Y-m-d H:i:s', 'timezone date format'); +$timezone_format = _x( 'Y-m-d H:i:s', 'timezone date format' ); -add_action('admin_head', 'options_general_add_js'); +add_action( 'admin_head', 'options_general_add_js' ); -$options_help = '
' . __('The fields on this screen determine some of the basics of your site setup.') . '
' . - '' . __('Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes.') . '
'; +$options_help = '' . __( 'The fields on this screen determine some of the basics of your site setup.' ) . '
' . + '' . __( 'Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes.' ) . '
'; if ( ! is_multisite() ) { - $options_help .= '' . __('The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory.') . '
' . - '' . __('If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin.') . '
'; + $options_help .= '' . __( 'The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory.' ) . '
' . + '' . __( 'If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin.' ) . '
'; } $options_help .= '' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '
' . '' . __( 'UTC means Coordinated Universal Time.' ) . '
' . '' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '
'; -get_current_screen()->add_help_tab( array( - 'id' => 'overview', - 'title' => __('Overview'), - 'content' => $options_help, -) ); +get_current_screen()->add_help_tab( + array( + 'id' => 'overview', + 'title' => __( 'Overview' ), + 'content' => $options_help, + ) +); get_current_screen()->set_help_sidebar( - '' . __('For more information:') . '
' . - '' . __('Documentation on General Settings') . '
' . - '' . __('Support Forums') . '
' + '' . __( 'For more information:' ) . '
' . + '' . __( 'Documentation on General Settings' ) . '
' . + '' . __( 'Support' ) . '
' ); include( ABSPATH . 'wp-admin/admin-header.php' ); @@ -53,39 +56,50 @@