Ticket #19433: extra_space_4.patch
File extra_space_4.patch, 37.7 KB (added by , 12 years ago) |
---|
-
edit-tag-form.php
24 24 else 25 25 do_action('edit_tag_form_pre', $tag); 26 26 27 do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy); 27 do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy); ?> 28 28 29 29 <div class="wrap"> 30 30 <?php screen_icon(); ?> -
edit.php
133 133 break; 134 134 } 135 135 136 $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 136 $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback ); 137 137 138 138 wp_redirect($sendback); 139 139 exit(); -
export.php
41 41 get_current_screen()->add_help_tab( array( 42 42 'id' => 'overview', 43 43 'title' => __('Overview'), 44 'content' => '<p>' . __('You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to 44 'content' => '<p>' . __('You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.') . '</p>' . 45 45 '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>', 46 46 ) ); 47 47 -
includes/dashboard.php
86 86 if ( !isset( $widget_options['dashboard_primary'] ) ) { 87 87 $update = true; 88 88 $widget_options['dashboard_primary'] = array( 89 'link' => apply_filters( 'dashboard_primary_link', 90 'url' => apply_filters( 'dashboard_primary_feed', 89 'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ), 90 'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ), 91 91 'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ), 92 92 'items' => 2, 93 93 'show_summary' => 1, … … 101 101 if ( !isset( $widget_options['dashboard_secondary'] ) ) { 102 102 $update = true; 103 103 $widget_options['dashboard_secondary'] = array( 104 'link' => apply_filters( 'dashboard_secondary_link', 105 'url' => apply_filters( 'dashboard_secondary_feed', 104 'link' => apply_filters( 'dashboard_secondary_link', __( 'http://planet.wordpress.org/' ) ), 105 'url' => apply_filters( 'dashboard_secondary_feed', __( 'http://planet.wordpress.org/feed/' ) ), 106 106 'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ), 107 107 'items' => 5, 108 108 'show_summary' => 0, … … 700 700 $actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>'; 701 701 $actions['edit'] = "<a href='comment.php?action=editcomment&c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>'; 702 702 $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>'; 703 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ 703 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>'; 704 704 if ( !EMPTY_TRASH_DAYS ) 705 705 $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID::trash=1 delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>'; 706 706 else … … 1290 1290 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 1291 1291 1292 1292 <div class="welcome-panel-content"> 1293 <h3><?php _e( 'Welcome to your new WordPress site! 1293 <h3><?php _e( 'Welcome to your new WordPress site!' ); ?></h3> 1294 1294 <p class="about-description"><?php _e( 'If you need help getting started, check out our documentation on <a href="http://codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>. If you’d rather dive right in, here are a few things most people do first when they set up a new WordPress site. If you need help, use the Help tabs in the upper right corner to get information on how to use your current screen and where to go for more assistance.' ); ?></p> 1295 1295 <div class="welcome-panel-column-container"> 1296 1296 <div class="welcome-panel-column"> -
includes/file.php
157 157 * Please note that the calling function must unlink() this itself. 158 158 * 159 159 * The filename is based off the passed parameter or defaults to the current unix timestamp, 160 * while the directory can either be passed as well, or by leaving 160 * while the directory can either be passed as well, or by leaving it blank, default to a writable temporary directory. 161 161 * 162 162 * @since 2.6.0 163 163 * … … 486 486 487 487 /** 488 488 * Downloads a url to a local temporary file using the WordPress HTTP Class. 489 * Please note, That the calling function must unlink() the 489 * Please note, That the calling function must unlink() the file. 490 490 * 491 491 * @since 2.5.0 492 492 * … … 884 884 } 885 885 886 886 /** 887 * Displays a form to the user to request for their FTP/SSH details in order to 887 * Displays a form to the user to request for their FTP/SSH details in order to connect to the filesystem. 888 888 * All chosen/entered details are saved, Excluding the Password. 889 889 * 890 890 * Hostnames may be in the form of hostname:portnumber (eg: wordpress.org:2467) to specify an alternate FTP/SSH port. … … 896 896 * @param string $form_post the URL to post the form to 897 897 * @param string $type the chosen Filesystem method in use 898 898 * @param boolean $error if the current request has failed to connect 899 * @param string $context The directory which is needed access to, The write-test will be performed on 899 * @param string $context The directory which is needed access to, The write-test will be performed on this directory by get_filesystem_method() 900 900 * @param string $extra_fields Extra POST fields which should be checked for to be included in the post. 901 901 * @return boolean False on failure. True on success. 902 902 */ -
includes/meta-boxes.php
27 27 28 28 <div id="minor-publishing-actions"> 29 29 <div id="save-action"> 30 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) 30 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?> 31 31 <input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" tabindex="4" class="button button-highlighted" /> 32 32 <?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?> 33 33 <input type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save as Pending'); ?>" tabindex="4" class="button button-highlighted" /> … … 639 639 <div id="delete-action"> 640 640 <?php 641 641 if ( !empty($_GET['action']) && 'edit' == $_GET['action'] && current_user_can('manage_links') ) { ?> 642 <a class="submitdelete deletion" href="<?php echo wp_nonce_url("link.php?action=delete&link_id=$link->link_id", 'delete-bookmark_' . $link->link_id); ?>" onclick="if ( confirm('<?php echo esc_js(sprintf(__("You are about to delete this link '%s'\n 642 <a class="submitdelete deletion" href="<?php echo wp_nonce_url("link.php?action=delete&link_id=$link->link_id", 'delete-bookmark_' . $link->link_id); ?>" onclick="if ( confirm('<?php echo esc_js(sprintf(__("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $link->link_name )); ?>') ) {return true;}return false;"><?php _e('Delete'); ?></a> 643 643 <?php } ?> 644 644 </div> 645 645 … … 789 789 <label for="contact"> 790 790 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?></label> 791 791 <label for="acquaintance"> 792 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> /> 792 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('acquaintance') ?></label> 793 793 <label for="friend"> 794 794 <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friend') ?></label> 795 795 <label for="friendship"> … … 833 833 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </th> 834 834 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend> 835 835 <label for="child"> 836 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?> 836 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?> /> 837 837 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?></label> 838 838 <label for="kin"> 839 <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?> 839 <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?> /> 840 840 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('kin') ?></label> 841 841 <label for="parent"> 842 842 <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent'); ?> /> … … 894 894 </tr> 895 895 <tr class="form-field"> 896 896 <th valign="top" scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th> 897 <td><input name="link_rss" class="code" type="text" id="rss_uri" value="<?php echo 897 <td><input name="link_rss" class="code" type="text" id="rss_uri" value="<?php echo ( isset( $link->link_rss ) ? esc_attr($link->link_rss) : ''); ?>" size="50" style="width: 95%" /></td> 898 898 </tr> 899 899 <tr class="form-field"> 900 900 <th valign="top" scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th> -
includes/ms.php
115 115 $index++; 116 116 } 117 117 118 $stack = array_reverse( $stack ); 118 $stack = array_reverse( $stack ); // Last added dirs are deepest 119 119 foreach( (array) $stack as $dir ) { 120 120 if ( $dir != $top_dir) 121 121 @rmdir( $dir ); … … 430 430 function update_user_status( $id, $pref, $value, $deprecated = null ) { 431 431 global $wpdb; 432 432 433 if ( null !== $deprecated 433 if ( null !== $deprecated ) 434 434 _deprecated_argument( __FUNCTION__, '3.1' ); 435 435 436 436 $wpdb->update( $wpdb->users, array( $pref => $value ), array( 'ID' => $id ) ); … … 549 549 $output[$be] = '<option value="' . esc_attr( $code_lang ) . '"' . selected( $current, $code_lang, false ) . '> ' . $be . '</option>'; 550 550 } else { 551 551 $translated = format_code_lang( $code_lang ); 552 $output[$translated] = 552 $output[$translated] = '<option value="' . esc_attr( $code_lang ) . '"' . selected( $current, $code_lang, false ) . '> ' . esc_html ( $translated ) . '</option>'; 553 553 } 554 554 555 555 } … … 634 634 <?php foreach( (array) $all_blogs as $blog ) { 635 635 if ( $primary_blog == $blog->userblog_id ) 636 636 $found = true; 637 ?><option value="<?php echo $blog->userblog_id ?>"<?php selected( $primary_blog, 637 ?><option value="<?php echo $blog->userblog_id ?>"<?php selected( $primary_blog, $blog->userblog_id ); ?>><?php echo esc_url( get_home_url( $blog->userblog_id ) ) ?></option><?php 638 638 } ?> 639 639 </select> 640 640 <?php … … 771 771 * Whether or not we have a large network. 772 772 * 773 773 * The default criteria for a large network is either more than 10,000 users or more than 10,000 sites. 774 * Plugins can alter this criteria 774 * Plugins can alter this criteria using the 'wp_is_large_network' filter. 775 775 * 776 776 * @since 3.3.0 777 777 * @param string $using 'sites or 'users'. Default is 'sites'. -
includes/nav-menu.php
7 7 * @since 3.0.0 8 8 * @uses Walker_Nav_Menu 9 9 */ 10 class Walker_Nav_Menu_Edit extends Walker_Nav_Menu 10 class Walker_Nav_Menu_Edit extends Walker_Nav_Menu { 11 11 /** 12 12 * @see Walker_Nav_Menu::start_lvl() 13 13 * @since 3.0.0 … … 209 209 * @since 3.0.0 210 210 * @uses Walker_Nav_Menu 211 211 */ 212 class Walker_Nav_Menu_Checklist extends Walker_Nav_Menu 212 class Walker_Nav_Menu_Checklist extends Walker_Nav_Menu { 213 213 function __construct( $fields = false ) { 214 214 if ( $fields ) { 215 215 $this->db_fields = $fields; … … 990 990 ( 991 991 ! isset( $_item_object_data['menu-item-type'] ) || // and item type either isn't set 992 992 in_array( $_item_object_data['menu-item-url'], array( 'http://', '' ) ) || // or URL is the default 993 ! ( 'custom' == $_item_object_data['menu-item-type'] && ! isset( $_item_object_data['menu-item-db-id'] ) ) || 993 ! ( 'custom' == $_item_object_data['menu-item-type'] && ! isset( $_item_object_data['menu-item-db-id'] ) ) || // or it's not a custom menu item (but not the custom home page) 994 994 ! empty( $_item_object_data['menu-item-db-id'] ) // or it *is* a custom menu item that already exists 995 995 ) 996 996 ) { -
includes/plugin-install.php
322 322 <?php endif; if ( ! empty($api->slug) && empty($api->external) ) : ?> 323 323 <li><a target="_blank" href="http://wordpress.org/extend/plugins/<?php echo $api->slug ?>/"><?php _e('WordPress.org Plugin Page »') ?></a></li> 324 324 <?php endif; if ( ! empty($api->homepage) ) : ?> 325 <li><a target="_blank" href="<?php echo $api->homepage ?>"><?php _e('Plugin Homepage 325 <li><a target="_blank" href="<?php echo $api->homepage ?>"><?php _e('Plugin Homepage »') ?></a></li> 326 326 <?php endif; ?> 327 327 </ul> 328 328 <?php if ( ! empty($api->rating) ) : ?> -
includes/plugin.php
882 882 883 883 $new_menu = array( $menu_title, $capability, $menu_slug, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); 884 884 885 if ( null === $position 885 if ( null === $position ) 886 886 $menu[] = $new_menu; 887 887 else 888 888 $menu[$position] = $new_menu; … … 988 988 // as the first item in the submenu. If the submenu file is the same as the 989 989 // parent file someone is trying to link back to the parent manually. In 990 990 // this case, don't automatically add a link back to avoid duplication. 991 if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug 991 if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug ) { 992 992 foreach ( (array)$menu as $parent_menu ) { 993 993 if ( $parent_menu[2] == $parent_slug && current_user_can( $parent_menu[1] ) ) 994 994 $submenu[$parent_slug][] = $parent_menu; -
includes/post.php
171 171 $post_data = _wp_translate_postdata( true, $post_data ); 172 172 if ( is_wp_error($post_data) ) 173 173 wp_die( $post_data->get_error_message() ); 174 if ( 'autosave' != $post_data['action'] 174 if ( 'autosave' != $post_data['action'] && 'auto-draft' == $post_data['post_status'] ) 175 175 $post_data['post_status'] = 'draft'; 176 176 177 177 if ( isset($post_data['visibility']) ) { … … 352 352 $tax_names = get_object_taxonomies( $post ); 353 353 foreach ( $tax_names as $tax_name ) { 354 354 $taxonomy_obj = get_taxonomy($tax_name); 355 if ( 355 if ( isset( $tax_input[$tax_name]) && current_user_can( $taxonomy_obj->cap->assign_terms ) ) 356 356 $new_terms = $tax_input[$tax_name]; 357 357 else 358 358 $new_terms = array(); -
includes/screen.php
196 196 * @param mixed $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen, 197 197 * or an existing screen object. 198 198 */ 199 function set_current_screen( $hook_name = 199 function set_current_screen( $hook_name = '' ) { 200 200 WP_Screen::get( $hook_name )->set_current_screen(); 201 201 } 202 202 … … 817 817 </div> 818 818 <?php endif; 819 819 if ( ! empty( $columns ) ) : ?> 820 <h5><?php echo ( isset( $columns['_title'] ) ? $columns['_title'] :_x('Show on screen', 'Columns') ) ?></h5>820 <h5><?php echo ( isset( $columns['_title'] ) ? $columns['_title'] : _x('Show on screen', 'Columns') ) ?></h5> 821 821 <div class="metabox-prefs"> 822 822 <?php 823 823 $special = array('_title', 'cb', 'comment', 'media', 'name', 'title', 'username', 'blogname'); -
includes/template.php
1300 1300 if ( 'attachment' == $post->name ) 1301 1301 continue; 1302 1302 ?> 1303 <input type="radio" name="find-posts-what" id="find-posts-<?php echo esc_attr($post->name); ?>" value="<?php echo esc_attr($post->name); ?>" <?php checked($post->name, 1303 <input type="radio" name="find-posts-what" id="find-posts-<?php echo esc_attr($post->name); ?>" value="<?php echo esc_attr($post->name); ?>" <?php checked($post->name, 'post'); ?> /> 1304 1304 <label for="find-posts-<?php echo esc_attr($post->name); ?>"><?php echo $post->label; ?></label> 1305 1305 <?php 1306 1306 } ?> … … 1409 1409 do_action('admin_head'); 1410 1410 ?> 1411 1411 </head> 1412 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> 1412 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin no-js iframe <?php echo apply_filters( 'admin_body_class', '' ) . ' ' . $admin_body_class; ?>"> 1413 1413 <script type="text/javascript"> 1414 1414 //<![CDATA[ 1415 1415 (function(){ -
includes/theme-install.php
24 24 * 25 25 * @since 2.8.0 26 26 * 27 * @deprecated since 3.1.0 27 * @deprecated since 3.1.0 Use get_theme_feature_list() instead. 28 28 * 29 29 * @return array 30 30 */ 31 31 function install_themes_feature_list( ) { 32 32 if ( !$cache = get_transient( 'wporg_theme_feature_list' ) ) 33 set_transient( 'wporg_theme_feature_list', array( ), 33 set_transient( 'wporg_theme_feature_list', array( ), 10800); 34 34 35 if ( $cache 35 if ( $cache ) 36 36 return $cache; 37 37 38 38 $feature_list = themes_api( 'feature_list', array( ) ); … … 134 134 $name = wp_kses($theme->name, $themes_allowedtags); 135 135 $desc = wp_kses($theme->description, $themes_allowedtags); 136 136 //if ( strlen($desc) > 30 ) 137 // $desc = 137 // $desc = substr($desc, 0, 15) . '<span class="dots">...</span><span>' . substr($desc, -15) . '</span>'; 138 138 139 139 $preview_link = $theme->preview_url . '?TB_iframe=true&width=600&height=400'; 140 140 if ( !is_array($actions) ) { -
includes/theme.php
271 271 * 272 272 * @since 3.1.0 273 273 * 274 * @return array 274 * @return array Array of features keyed by category with translations keyed by slug. 275 275 */ 276 276 function get_theme_feature_list() { 277 277 // Hard-coded list is used if api not accessible. … … 340 340 return $features; 341 341 342 342 if ( !$feature_list = get_site_transient( 'wporg_theme_feature_list' ) ) 343 set_site_transient( 'wporg_theme_feature_list', array( ), 343 set_site_transient( 'wporg_theme_feature_list', array( ), 10800); 344 344 345 345 if ( !$feature_list ) { 346 346 $feature_list = themes_api( 'feature_list', array( ) ); -
includes/update-core.php
335 335 * introduced version present here being older than the current installed version. 336 336 * 337 337 * The content of this array should follow the following format: 338 * 338 * Filename (relative to wp-content) => Introduced version 339 339 * Directories should be noted by suffixing it with a trailing slash (/) 340 340 * 341 341 * @since 3.2.0 -
includes/update.php
142 142 if ( current_user_can('update_core') ) { 143 143 $cur = get_preferred_from_update_core(); 144 144 145 if ( isset( $cur->response ) && $cur->response == 'upgrade' 145 if ( isset( $cur->response ) && $cur->response == 'upgrade' ) 146 146 $msg .= " <a href='" . network_admin_url( 'update-core.php' ) . "' class='button'>" . sprintf( __('Update to %s'), $cur->current ? $cur->current : __( 'Latest' ) ) . '</a>'; 147 147 } 148 148 -
includes/upgrade.php
74 74 $message = '<em>'.__('Your chosen password.').'</em>'; 75 75 $user_id = wp_create_user($user_name, $user_password, $user_email); 76 76 } else { 77 $message = 77 $message = __('User already exists. Password inherited.'); 78 78 } 79 79 80 80 $user = new WP_User($user_id); … … 1667 1667 * 1668 1668 * @since 1.5.0 1669 1669 */ 1670 function make_db_current_silent( 1670 function make_db_current_silent( $tables = 'all' ) { 1671 1671 $alterations = dbDelta( $tables ); 1672 1672 } 1673 1673 … … 1848 1848 1849 1849 if (file_exists(ABSPATH . 'wp-layout.css')) { 1850 1850 if (! make_site_theme_from_oldschool($theme_name, $template)) { 1851 // TODO: 1851 // TODO: rm -rf the site theme directory. 1852 1852 return false; 1853 1853 } 1854 1854 } else { 1855 1855 if (! make_site_theme_from_default($theme_name, $template)) 1856 // TODO: 1856 // TODO: rm -rf the site theme directory. 1857 1857 return false; 1858 1858 } 1859 1859 -
link-parse-opml.php
11 11 12 12 global $opml, $map; 13 13 14 // columns we wish to find are: 14 // columns we wish to find are: link_url, link_name, link_target, link_description 15 15 // we need to map XML attribute names to our columns 16 16 $opml_map = array('URL' => 'link_url', 17 17 'HTMLURL' => 'link_url', -
maint/repair.php
59 59 printf( __( 'Successfully repaired the %s table.' ), $table ); 60 60 } else { 61 61 /* translators: 1: table name, 2: error message, */ 62 echo sprintf( __( 'Failed to repair the 62 echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), $table, "<code>$check->Msg_text</code>" ) . '<br />'; 63 63 $problems[$table] = $check->Msg_text; 64 64 $okay = false; 65 65 } -
nav-menus.php
430 430 431 431 // Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth 432 432 if ( is_nav_menu( $nav_menu_selected_id ) ) 433 $edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id 433 $edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id ); 434 434 435 435 function wp_nav_menu_max_depth($classes) { 436 436 global $_wp_nav_menu_max_depth; … … 545 545 <div class="major-publishing-actions"> 546 546 <label class="menu-name-label howto open-label" for="menu-name"> 547 547 <span><?php _e('Menu Name'); ?></span> 548 <input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e('Enter menu name here'); ?>" value="<?php echo esc_attr( $nav_menu_selected_title 548 <input name="menu-name" id="menu-name" type="text" class="menu-name regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e('Enter menu name here'); ?>" value="<?php echo esc_attr( $nav_menu_selected_title ); ?>" /> 549 549 </label> 550 550 <?php if ( !empty( $nav_menu_selected_id ) ) : 551 551 if ( ! isset( $auto_add ) ) { -
network/menu.php
56 56 57 57 unset($update_data); 58 58 59 $submenu[ 'upgrade.php' ][10] = array( __( 'Available Updates' ), 'update_core', 59 $submenu[ 'upgrade.php' ][10] = array( __( 'Available Updates' ), 'update_core', 'update-core.php' ); 60 60 $submenu[ 'upgrade.php' ][15] = array( __( 'Update Network' ), 'manage_network', 'upgrade.php' ); 61 61 62 62 $menu[99] = array( '', 'read', 'separator-last', '', 'wp-menu-separator-last' ); -
options-general.php
98 98 </tr> 99 99 <tr valign="top"> 100 100 <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th> 101 <td><input name="blogdescription" type="text" id="blogdescription" 101 <td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" /> 102 102 <span class="description"><?php _e('In a few words, explain what this site is about.') ?></span></td> 103 103 </tr> 104 104 <?php if ( !is_multisite() ) { ?> … … 211 211 echo ' '; 212 212 $message = $tr['isdst'] ? 213 213 __('Daylight saving time begins on: <code>%s</code>.') : 214 __('Standard time begins 214 __('Standard time begins on: <code>%s</code>.'); 215 215 // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n(). 216 216 printf( $message, date_i18n(get_option('date_format') . ' ' . get_option('time_format'), $tr['ts'] + ($tz_offset - $tr['offset']) ) ); 217 217 } else { -
options-permalink.php
257 257 <?php wp_nonce_field('update-permalink') ?> 258 258 <p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea></p> 259 259 </form> 260 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.') 260 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.') ?></p> 261 261 <?php else : ?> 262 262 <p><?php _e('If the root directory of your site were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p> 263 263 <form action="options-permalink.php" method="post"> 264 264 <?php wp_nonce_field('update-permalink') ?> 265 265 <p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules(true) ); ?></textarea></p> 266 266 </form> 267 <p><?php _e('If you temporarily make your site’s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.') 267 <p><?php _e('If you temporarily make your site’s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.') ?></p> 268 268 <?php endif; ?> 269 269 <?php endif; ?> 270 270 <?php else : -
options-reading.php
115 115 <tr valign="top"> 116 116 <th scope="row"><?php _e( 'For each article in a feed, show' ); ?> </th> 117 117 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'For each article in a feed, show' ); ?> </span></legend> 118 <p><label><input name="rss_use_excerpt" 118 <p><label><input name="rss_use_excerpt" type="radio" value="0" <?php checked( 0, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Full text' ); ?></label><br /> 119 119 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Summary' ); ?></label></p> 120 120 </fieldset></td> 121 121 </tr> -
options.php
151 151 } 152 152 153 153 /** 154 * 154 * Handle settings errors and return to options page 155 155 */ 156 156 // If no settings errors were registered add a general 'updated' message. 157 157 if ( !count( get_settings_errors() ) ) -
press-this.php
432 432 show('video'); 433 433 <?php } elseif ( preg_match("/vimeo\.com\/[0-9]+/i", $url) ) { ?> 434 434 show('video'); 435 <?php 435 <?php } elseif ( preg_match("/flickr\.com/i", $url) ) { ?> 436 436 show('photo'); 437 437 <?php } ?> 438 438 jQuery('#title').unbind(); … … 605 605 606 606 $content = ''; 607 607 if ( $selection ) 608 $content .= 608 $content .= $selection; 609 609 610 610 if ( $url ) { 611 611 $content .= '<p>'; -
themes.php
120 120 if ( ( strcmp($self, $item[2]) == 0 && empty($parent_file)) || ($parent_file && ($item[2] == $parent_file)) ) $class = ' class="current"'; 121 121 122 122 if ( !empty($submenu[$item[2]]) ) { 123 $submenu[$item[2]] = array_values($submenu[$item[2]]); 123 $submenu[$item[2]] = array_values($submenu[$item[2]]); // Re-index. 124 124 $menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]); 125 125 if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook)) 126 126 $options[] = "<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>"; -
tools.php
20 20 'id' => 'converter', 21 21 'title' => __('Categories and Tags Converter'), 22 22 'content' => '<p>' . __('Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierachy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.' ) . '</p>' . 23 '<p>' . __( 'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, return to this screen 23 '<p>' . __( 'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, return to this screen and the link will take you to a screen where you can choose to convert tags into categories or vice versa.' ) . '</p>', 24 24 ) ); 25 25 26 26 get_current_screen()->set_help_sidebar( -
upgrade.php
88 88 case 1: 89 89 wp_upgrade(); 90 90 91 $backto = !empty($_GET['backto']) ? stripslashes( urldecode( $_GET['backto'] ) ) : 91 $backto = !empty($_GET['backto']) ? stripslashes( urldecode( $_GET['backto'] ) ) : __get_option( 'home' ) . '/'; 92 92 $backto = esc_url( $backto ); 93 93 $backto = wp_validate_redirect($backto, __get_option( 'home' ) . '/'); 94 94 ?> -
user-new.php
80 80 81 81 Please click the following link to confirm the invite: 82 82 %4$s' ); 83 wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), get_option( 'blogname' ) ), 83 wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), get_option( 'blogname' ) ), sprintf($message, get_option('blogname'), site_url(), $_REQUEST[ 'role' ], site_url("/newbloguser/$newuser_key/"))); 84 84 $redirect = add_query_arg( array('update' => 'add'), 'user-new.php' ); 85 85 } 86 86 } … … 361 361 <?php if ( is_multisite() && is_super_admin() ) { ?> 362 362 <tr> 363 363 <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th> 364 <td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" 364 <td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td> 365 365 </tr> 366 366 <?php } ?> 367 367 </table>