Changeset 2756
- Timestamp:
- 08/07/2005 08:58:10 AM (20 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
-
admin-header.php (modified) (1 diff)
-
edit-comments.php (modified) (1 diff)
-
edit-form-advanced.php (modified) (3 diffs)
-
index.php (modified) (1 diff)
-
post.php (modified) (1 diff)
-
themes.php (modified) (2 diffs)
-
tinymce/tiny_mce_src.js (modified) (1 diff)
-
wp-admin.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r2755 r2756 23 23 theme_advanced_toolbar_align : "left", 24 24 theme_advanced_path_location : "bottom", 25 entity_encoding : " numeric",26 extended_valid_elements : "a[ name|href|target|title|onclick],img[class|src|border=0|alt|title|width|height|align],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",25 entity_encoding : "raw", 26 extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]", 27 27 plugins : "emotions" 28 28 }); -
trunk/wp-admin/edit-comments.php
r2724 r2756 89 89 echo "<li class='$class'>"; 90 90 ?> 91 <p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url ) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>91 <p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url ) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p> 92 92 93 93 <?php comment_text() ?> -
trunk/wp-admin/edit-form-advanced.php
r2748 r2756 49 49 <?php if (isset($_GET['message']) && 2 > $_GET['message']) : ?> 50 50 <script type="text/javascript"> 51 <!--52 51 function focusit() { 53 52 // focus on first input field … … 55 54 } 56 55 window.onload = focusit; 57 //-->58 56 </script> 59 57 <?php endif; ?> … … 172 170 </p> 173 171 174 <?php do_action('edit_form_advanced' , ''); ?>172 <?php do_action('edit_form_advanced'); ?> 175 173 176 174 <div id="advancedstuff" class="dbx-group" > -
trunk/wp-admin/index.php
r2701 r2756 104 104 <?php } ?> 105 105 106 <?php do_action('activity_box_end'); ?> 106 107 </div> 107 108 108 109 <h2><?php _e('Dashboard'); ?></h2> 109 <p><?php _e( 'Below is the latest news from the official WordPress development blog, click on a title to read the full entry.'); ?></p>110 <p><?php _e("Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our <a href='http://codex.wordpress.org/'>great documentation</a> or if that doesn't help visit the <a href='http://wordpress.org/support/'>support forums</a>."); ?></p> 110 111 <?php 111 112 $rss = @fetch_rss('http://wordpress.org/development/feed/'); -
trunk/wp-admin/post.php
r2723 r2756 85 85 <div class="storycontent"> 86 86 <?php 87 echo apply_filters('the_content', $post->post_content);87 echo apply_filters('the_content', html_entity_decode($post->post_content) ); 88 88 ?> 89 89 </div> -
trunk/wp-admin/themes.php
r2594 r2756 54 54 </div> 55 55 56 <h2><?php _e(' Themes Available'); ?></h2>56 <h2><?php _e('Available Themes'); ?></h2> 57 57 <?php if ( 1 < count($themes) ) { ?> 58 58 <table width="100%" cellpadding="3" cellspacing="3"> … … 146 146 147 147 <h2><?php _e('Get More Themes'); ?></h2> 148 <p><?php _e('You can find additional themes for your site in the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a>. To install a theme you generally just need to upload the theme folder into your <code>wp-content/themes</code> directory. Once a theme is uploaded, you may activate it here.'); ?></p>148 <p><?php _e('You can find additional themes for your site in the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a>. To install a theme you generally just need to upload the theme folder into your <code>wp-content/themes</code> directory. Once a theme is uploaded, you may activate it on this page.'); ?></p> 149 149 150 150 </div> -
trunk/wp-admin/tinymce/tiny_mce_src.js
r2755 r2756 542 542 iframe.setAttribute("src", this.settings['default_document']); 543 543 544 iframe.style.width = "98%";544 iframe.style.width = tinyMCE.settings['area_width']; 545 545 iframe.style.height = tinyMCE.settings['area_height']; 546 546 -
trunk/wp-admin/wp-admin.css
r2755 r2756 154 154 155 155 .alternate { 156 background: # eee;156 background: #f1f1f1; 157 157 } 158 158 … … 267 267 268 268 .wrap h2 { 269 margin: . 5em 0;269 margin: .8em 0 .5em; 270 270 } 271 271
Note: See TracChangeset
for help on using the changeset viewer.