Make WordPress Core

Ticket #9030: 9030.diff

File 9030.diff, 32.9 KB (added by Denis-de-Bernardy, 16 years ago)
  • wp-includes/default-widgets.php

     
    185185
    186186                echo $after_widget;
    187187        }
     188
     189        function form( $instance ) { ?>
     190                <input name="<?php echo $this->get_field_name('title'); ?>" type="hidden" value="" />
     191<?php
     192        }
     193
    188194}
    189195
    190196/**
     
    312318
    313319        function widget( $args, $instance ) {
    314320                extract($args);
    315                 $title = empty($instance['title']) ? '&nbsp;' : apply_filters('widget_title', $instance['title']);
     321                $title = empty($instance['title']) ? '&#160;' : apply_filters('widget_title', $instance['title']);
    316322                echo $before_widget . $before_title . $title . $after_title;
    317323                echo '<div id="calendar_wrap">';
    318324                get_calendar();
  • wp-includes/wp-diff.php

     
    128128         * @return string
    129129         */
    130130        function emptyLine() {
    131                 return '<td colspan="2">&nbsp;</td>';
     131                return '<td colspan="2">&#160;</td>';
    132132        }
    133133
    134134        /**
  • wp-includes/comment-template.php

     
    12421242                <br />
    12431243<?php endif; ?>
    12441244
    1245                 <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),'&nbsp;&nbsp;','') ?></div>
     1245                <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),'&#160;&#160;','') ?></div>
    12461246
    12471247                <?php comment_text() ?>
    12481248
  • wp-includes/general-template.php

     
    792792                                $url = get_month_link( $arcresult->year, $arcresult->month );
    793793                                $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);
    794794                                if ( $show_post_count )
    795                                         $after = '&nbsp;('.$arcresult->posts.')' . $afterafter;
     795                                        $after = '&#160;('.$arcresult->posts.')' . $afterafter;
    796796                                $output .= get_archives_link($url, $text, $format, $before, $after);
    797797                        }
    798798                }
     
    813813                                $url = get_year_link($arcresult->year);
    814814                                $text = sprintf('%d', $arcresult->year);
    815815                                if ($show_post_count)
    816                                         $after = '&nbsp;('.$arcresult->posts.')' . $afterafter;
     816                                        $after = '&#160;('.$arcresult->posts.')' . $afterafter;
    817817                                $output .= get_archives_link($url, $text, $format, $before, $after);
    818818                        }
    819819                }
     
    835835                                $date = sprintf('%1$d-%2$02d-%3$02d 00:00:00', $arcresult->year, $arcresult->month, $arcresult->dayofmonth);
    836836                                $text = mysql2date($archive_day_date_format, $date);
    837837                                if ($show_post_count)
    838                                         $after = '&nbsp;('.$arcresult->posts.')'.$afterafter;
     838                                        $after = '&#160;('.$arcresult->posts.')'.$afterafter;
    839839                                $output .= get_archives_link($url, $text, $format, $before, $after);
    840840                        }
    841841                }
     
    864864                                                $url  = sprintf('%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d', get_option('home'), '', '?', '=', $arc_year, '&amp;', '=', $arcresult->week);
    865865                                                $text = $arc_week_start . $archive_week_separator . $arc_week_end;
    866866                                                if ($show_post_count)
    867                                                         $after = '&nbsp;('.$arcresult->posts.')'.$afterafter;
     867                                                        $after = '&#160;('.$arcresult->posts.')'.$afterafter;
    868868                                                $output .= get_archives_link($url, $text, $format, $before, $after);
    869869                                        }
    870870                                }
     
    10241024                get_month_link($previous->year, $previous->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($previous->month),
    10251025                        date('Y', mktime(0, 0 , 0, $previous->month, 1, $previous->year))) . '">&laquo; ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . '</a></td>';
    10261026        } else {
    1027                 echo "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
     1027                echo "\n\t\t".'<td colspan="3" id="prev" class="pad">&#160;</td>';
    10281028        }
    10291029
    1030         echo "\n\t\t".'<td class="pad">&nbsp;</td>';
     1030        echo "\n\t\t".'<td class="pad">&#160;</td>';
    10311031
    10321032        if ( $next ) {
    10331033                echo "\n\t\t".'<td abbr="' . $wp_locale->get_month($next->month) . '" colspan="3" id="next"><a href="' .
    10341034                get_month_link($next->year, $next->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($next->month),
    10351035                        date('Y', mktime(0, 0 , 0, $next->month, 1, $next->year))) . '">' . $wp_locale->get_month_abbrev($wp_locale->get_month($next->month)) . ' &raquo;</a></td>';
    10361036        } else {
    1037                 echo "\n\t\t".'<td colspan="3" id="next" class="pad">&nbsp;</td>';
     1037                echo "\n\t\t".'<td colspan="3" id="next" class="pad">&#160;</td>';
    10381038        }
    10391039
    10401040        echo '
     
    10901090        // See how much we should pad in the beginning
    10911091        $pad = calendar_week_mod(date('w', $unixmonth)-$week_begins);
    10921092        if ( 0 != $pad )
    1093                 echo "\n\t\t".'<td colspan="'.$pad.'" class="pad">&nbsp;</td>';
     1093                echo "\n\t\t".'<td colspan="'.$pad.'" class="pad">&#160;</td>';
    10941094
    10951095        $daysinmonth = intval(date('t', $unixmonth));
    10961096        for ( $day = 1; $day <= $daysinmonth; ++$day ) {
     
    11151115
    11161116        $pad = 7 - calendar_week_mod(date('w', mktime(0, 0 , 0, $thismonth, $day, $thisyear))-$week_begins);
    11171117        if ( $pad != 0 && $pad != 7 )
    1118                 echo "\n\t\t".'<td class="pad" colspan="'.$pad.'">&nbsp;</td>';
     1118                echo "\n\t\t".'<td class="pad" colspan="'.$pad.'">&#160;</td>';
    11191119
    11201120        echo "\n\t</tr>\n\t</tbody>\n\t</table>";
    11211121
  • wp-includes/classes.php

     
    12461246         * @param array $args Uses 'selected' argument for selected page to set selected HTML attribute for option element.
    12471247         */
    12481248        function start_el(&$output, $page, $depth, $args) {
    1249                 $pad = str_repeat('&nbsp;', $depth * 3);
     1249                $pad = str_repeat('&#160;', $depth * 3);
    12501250
    12511251                $output .= "\t<option class=\"level-$depth\" value=\"$page->ID\"";
    12521252                if ( $page->ID == $args['selected'] )
     
    14381438         * @param array $args Uses 'selected', 'show_count', and 'show_last_update' keys, if they exist.
    14391439         */
    14401440        function start_el(&$output, $category, $depth, $args) {
    1441                 $pad = str_repeat('&nbsp;', $depth * 3);
     1441                $pad = str_repeat('&#160;', $depth * 3);
    14421442
    14431443                $cat_name = apply_filters('list_cats', $category->name, $category);
    14441444                $output .= "\t<option class=\"level-$depth\" value=\"".$category->term_id."\"";
     
    14471447                $output .= '>';
    14481448                $output .= $pad.$cat_name;
    14491449                if ( $args['show_count'] )
    1450                         $output .= '&nbsp;&nbsp;('. $category->count .')';
     1450                        $output .= '&#160;&#160;('. $category->count .')';
    14511451                if ( $args['show_last_update'] ) {
    14521452                        $format = 'Y-m-d';
    1453                         $output .= '&nbsp;&nbsp;' . gmdate($format, $category->last_update_timestamp);
     1453                        $output .= '&#160;&#160;' . gmdate($format, $category->last_update_timestamp);
    14541454                }
    14551455                $output .= "</option>\n";
    14561456        }
  • wp-content/themes/default/functions.php

     
    387387                                <input type="hidden" name="hi" id="hi" value="<?php echo attribute_escape(kubrick_header_image()); ?>" />
    388388                                <input type="submit" name="toggledisplay" id="toggledisplay" value="<?php echo attribute_escape(__('Toggle Text')); ?>" />
    389389                                <input type="submit" name="defaults" value="<?php echo attribute_escape(__('Use Defaults')); ?>" />
    390                                 <input type="submit" class="defbutton" name="submitform" value="&nbsp;&nbsp;<?php _e('Save'); ?>&nbsp;&nbsp;" />
     390                                <input type="submit" class="defbutton" name="submitform" value="&#160;&#160;<?php _e('Save'); ?>&#160;&#160;" />
    391391                                <input type="hidden" name="action" value="save" />
    392392                                <input type="hidden" name="njform" value="true" />
    393393                        </form>
  • wp-admin/includes/dashboard.php

     
    524524                $actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . __( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
    525525                $actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
    526526                $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>';
    527                 //$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&nbsp;Edit') . '</a>';
     527                //$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&#160;Edit') . '</a>';
    528528                $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
    529529                $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */  _x( 'Spam', 'verb' ) . '</a>';
    530530                $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>';
     
    806806                                                        '&amp;TB_iframe=true&amp;width=600&amp;height=800';
    807807
    808808                echo "<h4>$label</h4>\n";
    809                 echo "<h5><a href='$link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
     809                echo "<h5><a href='$link'>$title</a></h5>&#160;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
    810810                echo "<p>$description</p>\n";
    811811        }
    812812}
  • wp-admin/includes/template.php

     
    121121                $edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>" . attribute_escape( $name ) . '</a><br />';
    122122                $actions = array();
    123123                $actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
    124                 $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
     124                $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
    125125                if ( $default_cat_id != $category->term_id )
    126126                        $actions['delete'] = "<a class='delete:the-list:cat-$category->term_id submitdelete' href='" . wp_nonce_url("categories.php?action=delete&amp;cat_ID=$category->term_id", 'delete-category_' . $category->term_id) . "'>" . __('Delete') . "</a>";
    127127                $actions = apply_filters('cat_row_actions', $actions, $category);
     
    162162                                if ( $default_cat_id != $category->term_id ) {
    163163                                        $output .= "<input type='checkbox' name='delete[]' value='$category->term_id' />";
    164164                                } else {
    165                                         $output .= "&nbsp;";
     165                                        $output .= "&#160;";
    166166                                }
    167167                                $output .= '</th>';
    168168                                break;
     
    292292                $edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>$name</a><br />";
    293293                $actions = array();
    294294                $actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
    295                 $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
     295                $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
    296296                if ( $default_cat_id != $category->term_id )
    297297                        $actions['delete'] = "<a class='delete:the-list:link-cat-$category->term_id submitdelete' href='" . wp_nonce_url("link-category.php?action=delete&amp;cat_ID=$category->term_id", 'delete-link-category_' . $category->term_id) . "'>" . __('Delete') . "</a>";
    298298                $actions = apply_filters('link_cat_row_actions', $actions, $category);
     
    332332                                if ( absint( get_option( 'default_link_category' ) ) != $category->term_id ) {
    333333                                        $output .= "<input type='checkbox' name='delete[]' value='$category->term_id' />";
    334334                                } else {
    335                                         $output .= "&nbsp;";
     335                                        $output .= "&#160;";
    336336                                }
    337337                                $output .= "</th>";
    338338                                break;
     
    652652                                        $out .= '<td ' . $attributes . '><strong><a class="row-title" href="' . $edit_link . '" title="' . attribute_escape(sprintf(__('Edit "%s"'), $name)) . '">' . $name . '</a></strong><br />';
    653653                                        $actions = array();
    654654                                        $actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
    655                                         $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
     655                                        $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
    656656                                        $actions['delete'] = "<a class='delete:the-list:tag-$tag->term_id submitdelete' href='" . wp_nonce_url("edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id) . "'>" . __('Delete') . "</a>";
    657657                                        $actions = apply_filters('tag_row_actions', $actions, $tag);
    658658                                        $action_count = count($actions);
     
    14351435                        $actions = array();
    14361436                        if ( current_user_can('edit_post', $post->ID) ) {
    14371437                                $actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '" title="' . attribute_escape(__('Edit this post')) . '">' . __('Edit') . '</a>';
    1438                                 $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . attribute_escape(__('Edit this post inline')) . '">' . __('Quick&nbsp;Edit') . '</a>';
     1438                                $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . attribute_escape(__('Edit this post inline')) . '">' . __('Quick&#160;Edit') . '</a>';
    14391439                                $actions['delete'] = "<a class='submitdelete' title='" . attribute_escape(__('Delete this post')) . "' href='" . wp_nonce_url("post.php?action=delete&amp;post=$post->ID", 'delete-post_' . $post->ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $post->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
    14401440                        }
    14411441                        if ( in_array($post->post_status, array('pending', 'draft')) ) {
     
    16481648                $actions = array();
    16491649                if ( current_user_can('edit_page', $page->ID) ) {
    16501650                        $actions['edit'] = '<a href="' . $edit_link . '" title="' . attribute_escape(__('Edit this page')) . '">' . __('Edit') . '</a>';
    1651                         $actions['inline'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
     1651                        $actions['inline'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
    16521652                        $actions['delete'] = "<a class='submitdelete' title='" . attribute_escape(__('Delete this page')) . "' href='" . wp_nonce_url("page.php?action=delete&amp;post=$page->ID", 'delete-page_' . $page->ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $page->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this page '%s'\n 'Cancel' to stop, 'OK' to delete."), $page->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
    16531653                }
    16541654                if ( in_array($post->post_status, array('pending', 'draft')) ) {
     
    21382138                                                $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
    21392139                                        $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>';
    21402140                                        $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>';
    2141                                         $actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&nbsp;Edit') . '</a>';
     2141                                        $actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&#160;Edit') . '</a>';
    21422142                                        if ( 'spam' != $the_comment_status )
    21432143                                                $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\');return false;" class="vim-r" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
    21442144
     
    22122212                                        echo "<a href='" . get_permalink( $post->ID ) . "'>#</a>";
    22132213                                        echo '</div></td>';
    22142214                                }
    2215                                 break;
    2216                         default:
    2217                                 echo "<td $attributes>\n";
    2218                                 do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
    2219                                 echo "</td>\n";
    2220                                 break;
    22212215                }
    22222216        }
    22232217        echo "</tr>\n";
     
    26092603                                        continue;
    26102604                                }
    26112605                        }
    2612                         $pad = str_repeat( '&nbsp;', $level * 3 );
     2606                        $pad = str_repeat( '&#160;', $level * 3 );
    26132607                        if ( $item->ID == $default)
    26142608                                $current = ' selected="selected"';
    26152609                        else
  • wp-admin/includes/media.php

     
    790790                        $html .= "<label for='{$css_id}'>" . __($name). "</label>";
    791791                        // only show the dimensions if that choice is available
    792792                        if ( $enabled )
    793                                 $html .= " <label for='{$css_id}' class='help'>" . sprintf( __("(%d&nbsp;&times;&nbsp;%d)"), $downsize[1], $downsize[2] ). "</label>";
     793                                $html .= " <label for='{$css_id}' class='help'>" . sprintf( __("(%d&#160;&times;&#160;%d)"), $downsize[1], $downsize[2] ). "</label>";
    794794
    795795                        $html .= '</div>';
    796796
  • wp-admin/js/theme-preview.dev.js

     
    3636                if ( alink.length ) {
    3737                        url = alink.attr('href') || '';
    3838                        text = alink.attr('title') || '';
    39                         link = '&nbsp; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
     39                        link = '&#160; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
    4040                } else {
    4141                        text = $(this).attr('title') || '';
    42                         link = '&nbsp; <span class="tb-theme-preview-link">' + text + '</span>';
     42                        link = '&#160; <span class="tb-theme-preview-link">' + text + '</span>';
    4343                }
    4444
    4545                $('#TB_title').css({'background-color':'#222','color':'#dfdfdf'});
  • wp-admin/js/post.dev.js

     
    4040                val = jQuery.trim(val);
    4141                if ( !val.match(/^\s+$/) && '' != val ) {
    4242                        button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
    43                         txt = '<span><a id="' + button_id + '" class="ntdelbutton">X</a>&nbsp;' + val + '</span> ';
     43                        txt = '<span><a id="' + button_id + '" class="ntdelbutton">X</a>&#160;' + val + '</span> ';
    4444                        jQuery(taxbox).find('.tagchecklist').append(txt);
    4545                        jQuery( '#' + button_id ).click( new_tag_remove_tag );
    4646                }
  • wp-admin/js/plugin-install.dev.js

     
    2323
    2424        thickDims().click( function() {
    2525                $('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
    26                 $('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&nbsp;' + $(this).attr('title') );
     26                $('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&#160;' + $(this).attr('title') );
    2727                return false;
    2828        });
    2929
  • wp-admin/theme-editor.php

     
    227227                echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>';
    228228        }
    229229        ?>
    230 <div class="clear"> &nbsp; </div>
     230<div class="clear"> &#160; </div>
    231231</div>
    232232<?php
    233233break;
  • wp-admin/edit-page-form.php

     
    2121$messages[1] = sprintf( __( 'Page updated. Continue editing below or <a href="%s">go back</a>.' ), attribute_escape( stripslashes( ( isset( $_GET['_wp_original_http_referer'] ) ? $_GET['_wp_original_http_referer'] : '') ) ) );
    2222$messages[2] = __('Custom field updated.');
    2323$messages[3] = __('Custom field deleted.');
    24 $messages[4] = sprintf(__('Page updated. <a href="%s">View page</a>'), get_permalink($post_ID));
     24$messages[4] = __('Page updated.');
    2525$messages[5] = sprintf(__('Page published. <a href="%s">View page</a>'), get_permalink($post_ID));
    2626$messages[6] = sprintf(__('Page submitted. <a href="%s">Preview page</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
    2727
     
    460460<table id="post-status-info" cellspacing="0"><tbody><tr>
    461461        <td id="wp-word-count"></td>
    462462        <td class="autosave-info">
    463         <span id="autosave">&nbsp;</span>
     463        <span id="autosave">&#160;</span>
    464464
    465465<?php
    466466        if ($post_ID) {
  • wp-admin/edit-attachment-rows.php

     
    156156                        <?php
    157157                } else {
    158158                        ?>
    159                         <td <?php echo $attributes ?>>&nbsp;</td>
     159                        <td <?php echo $attributes ?>>&#160;</td>
    160160                        <?php
    161161                }
    162162
  • wp-admin/edit-link-form.php

     
    305305<table class="form-table" style="width: 100%;" cellspacing="2" cellpadding="5">
    306306        <tr class="form-field">
    307307                <th valign="top"  scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th>
    308                 <td><input type="text" name="link_image" class="code" id="link_image" size="50" value="<?php echo ( isset( $link->link_image ) ? $link->link_image : ''); ?>" style="width: 95%" /></td>
     308                <td><input type="text" name="link_image" id="link_image" size="50" value="<?php echo ( isset( $link->link_image ) ? $link->link_image : ''); ?>" style="width: 95%" /></td>
    309309        </tr>
    310310        <tr class="form-field">
    311311                <th valign="top"  scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th>
    312                 <td><input name="link_rss" class="code" type="text" id="rss_uri" value="<?php echo  ( isset( $link->link_rss ) ? $link->link_rss : ''); ?>" size="50" style="width: 95%" /></td>
     312                <td><input name="link_rss" type="text" id="rss_uri" value="<?php echo  ( isset( $link->link_rss ) ? $link->link_rss : ''); ?>" size="50" style="width: 95%" /></td>
    313313        </tr>
    314314        <tr class="form-field">
    315315                <th valign="top"  scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th>
     
    325325                                        echo 'selected="selected"';
    326326                                echo('>'.$r.'</option>');
    327327                        }
    328                 ?></select>&nbsp;<?php _e('(Leave at 0 for no rating.)') ?>
     328                ?></select>&#160;<?php _e('(Leave at 0 for no rating.)') ?>
    329329                </td>
    330330        </tr>
    331331</table>
     
    382382<div id="addressdiv" class="stuffbox">
    383383<h3><label for="link_url"><?php _e('Web Address') ?></label></h3>
    384384<div class="inside">
    385         <input type="text" name="link_url" size="30" class="code" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" />
     385        <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" />
    386386    <p><?php _e('Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?></p>
    387387</div>
    388388</div>
  • wp-admin/import/btt.php

     
    9191                                        foreach ( $post_keys as $keyword ) {
    9292                                                $keyword = addslashes(trim(str_replace('+',' ',$keyword)));
    9393                                                if ( '' != $keyword ) {
    94                                                         echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
     94                                                        echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
    9595                                                        if ( !$precheck )
    9696                                                                wp_add_post_tags($post_meta->post_id, $keyword);
    9797                                                }
  • wp-admin/import/jkw.php

     
    106106                                        foreach ( $post_keys as $keyword ) {
    107107                                                $keyword = addslashes(trim($keyword));
    108108                                                if ( '' != $keyword ) {
    109                                                         echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
     109                                                        echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
    110110                                                        if ( !$precheck )
    111111                                                                wp_add_post_tags($post_meta->post_id, $keyword);
    112112                                                }
     
    144144                        foreach ( $metakeys as $post_meta ) {
    145145                                $keyword = addslashes(trim($post_meta->tag_name));
    146146                                if ( $keyword != '' ) {
    147                                         echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
     147                                        echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
    148148                                        if ( !$precheck )
    149149                                                wp_add_post_tags($post_meta->post_id, $keyword);
    150150                                }
  • wp-admin/import/blogger.php

     
    218218                        $pdone = isset($blog['posts_done']) ? (int) $blog['posts_done'] : 0;
    219219                        $cdone = isset($blog['comments_done']) ? (int) $blog['comments_done'] : 0;
    220220                        $init .= "blogs[$i]=new blog($i,'$blogtitle','{$blog['mode']}'," . $this->get_js_status($i) . ');';
    221                         $pstat = "<div class='ind' id='pind$i'>&nbsp;</div><div id='pstat$i' class='stat'>$pdone/{$blog['total_posts']}</div>";
    222                         $cstat = "<div class='ind' id='cind$i'>&nbsp;</div><div id='cstat$i' class='stat'>$cdone/{$blog['total_comments']}</div>";
     221                        $pstat = "<div class='ind' id='pind$i'>&#160;</div><div id='pstat$i' class='stat'>$pdone/{$blog['total_posts']}</div>";
     222                        $cstat = "<div class='ind' id='cind$i'>&#160;</div><div id='cstat$i' class='stat'>$cdone/{$blog['total_comments']}</div>";
    223223                        $rows .= "<tr id='blog$i'><td class='blogtitle'>$blogtitle</td><td class='bloghost'>{$blog['host']}</td><td class='bar'>$pstat</td><td class='bar'>$cstat</td><td class='submit'><input type='submit' class='button' id='submit$i' value='$value' /><input type='hidden' name='blog' value='$i' /></td></tr>\n";
    224224                }
    225225
  • wp-admin/import/greymatter.php

     
    4444<li><?php _e('Import gm-templates.') ?></li>
    4545<li><?php _e("Doesn't keep entries on top.")?></li>
    4646</ul>
    47 <p>&nbsp;</p>
     47<p>&#160;</p>
    4848
    4949<form name="stepOne" method="get" action="">
    5050<input type="hidden" name="import" value="greymatter" />
     
    297297        do_action('import_done', 'greymatter');
    298298        ?>
    299299</ul><strong><?php _e('Done') ?></strong></li></ul>
    300 <p>&nbsp;</p>
     300<p>&#160;</p>
    301301<p><?php _e('Completed GreyMatter import!') ?></p>
    302302<?php
    303303        $this->footer();
  • wp-admin/edit-form-comment.php

     
    6060$stamp = __('Submitted on: <b>%1$s</b>');
    6161$date = date_i18n( $datef, strtotime( $comment->comment_date ) );
    6262?>
    63 <span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
     63<span id="timestamp"><?php printf($stamp, $date); ?></span>&#160;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
    6464<div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0, 5); ?></div>
    6565</div>
    6666</div> <!-- misc actions -->
     
    113113                } else {
    114114                        _e( 'URL:' );
    115115                } ?></td>
    116         <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo $url; ?>" tabindex="3" /></td>
     116        <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" value="<?php echo $url; ?>" tabindex="3" /></td>
    117117</tr>
    118118</tbody>
    119119</table>
  • wp-admin/edit-form-advanced.php

     
    384384 * @param object $post
    385385 */
    386386function post_trackback_meta_box($post) {
    387         $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />';
     387        $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />';
    388388        if ('' != $post->pinged) {
    389389                $pings = '<p>'. __('Already pinged:') . '</p><ul>';
    390390                $already_pinged = explode("\n", trim($post->pinged));
     
    616616<table id="post-status-info" cellspacing="0"><tbody><tr>
    617617        <td id="wp-word-count"></td>
    618618        <td class="autosave-info">
    619         <span id="autosave">&nbsp;</span>
     619        <span id="autosave">&#160;</span>
    620620<?php
    621621        if ( $post_ID ) {
    622622                echo '<span id="last-edit">';
  • wp-admin/admin-header.php

     
    8484<?php
    8585$blog_name = get_bloginfo('name', 'display');
    8686if ( '' == $blog_name ) {
    87         $blog_name = '&nbsp;';
     87        $blog_name = '&#160;';
    8888} else {
    8989        $blog_name_excerpt = wp_html_excerpt($blog_name, 40);
    9090        if ( $blog_name != $blog_name_excerpt )
  • wp-admin/user-edit.php

     
    211211        <table class="color-palette">
    212212        <tr>
    213213        <?php foreach ( $color_info->colors as $html_color ): ?>
    214         <td style="background-color: <?php echo $html_color ?>" title="<?php echo $color ?>">&nbsp;</td>
     214        <td style="background-color: <?php echo $html_color ?>" title="<?php echo $color ?>">&#160;</td>
    215215        <?php endforeach; ?>
    216216        </tr>
    217217        </table>
     
    280280</tr>
    281281
    282282<tr>
    283         <th><label for="display_name"><?php _e('Display name publicly&nbsp;as') ?></label></th>
     283        <th><label for="display_name"><?php _e('Display name publicly&#160;as') ?></label></th>
    284284        <td>
    285285                <select name="display_name" id="display_name">
    286286                <?php
  • wp-admin/update-core.php

     
    4040        echo '<form method="post" action="' . $form_action . '" name="upgrade" class="upgrade">';
    4141        wp_nonce_field('upgrade-core');
    4242        echo '<p>';
    43         echo '<input id="upgrade" class="button" type="submit" value="' . $submit . '" name="upgrade" />&nbsp;';
     43        echo '<input id="upgrade" class="button" type="submit" value="' . $submit . '" name="upgrade" />&#160;';
    4444        echo '<input name="version" value="'.$update->current.'" type="hidden"/>';
    4545        echo '<input name="locale" value="'.$update->locale.'" type="hidden"/>';
    46         echo '<a href="' . $update->package . '" class="button">' . $download . '</a>&nbsp;';
     46        echo '<a href="' . $update->package . '" class="button">' . $download . '</a>&#160;';
    4747        if ( 'en_US' != $update->locale )
    4848                if ( !isset( $update->dismissed ) || !$update->dismissed )
    4949                        echo '<input id="dismiss" class="button" type="submit" value="' . attribute_escape(__('Hide this update')) . '" name="dismiss" />';
  • wp-admin/plugin-editor.php

     
    231231                echo '<div class="error"><p>' . $error . '</p></div>';
    232232        }
    233233?>
    234 <div class="clear"> &nbsp; </div>
     234<div class="clear"> &#160; </div>
    235235</div>
    236236<?php
    237237        break;