diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-08 10:40:54 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-08 10:40:54 +0000 |
commit | e6f923dd3d1b9917ce81921b158dd174d615b931 (patch) | |
tree | 5d99b22562b8024e721511545164e319e4c35a45 /wp-inst/wp-admin/post.php | |
parent | 7f70918945649e3718eda65f8e6fdf3d09356561 (diff) | |
download | wordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.tar.gz wordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.tar.xz wordpress-mu-e6f923dd3d1b9917ce81921b158dd174d615b931.zip |
Lots of changes from WP Core.
Removed Smarty template picker.
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@136 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-admin/post.php')
-rw-r--r-- | wp-inst/wp-admin/post.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-admin/post.php b/wp-inst/wp-admin/post.php index 57cc2f9..f6822d0 100644 --- a/wp-inst/wp-admin/post.php +++ b/wp-inst/wp-admin/post.php @@ -92,7 +92,7 @@ case 'edit': <div class="storycontent"> <?php - echo apply_filters('the_content', $post->post_content); + echo apply_filters('the_content', html_entity_decode($post->post_content) ); ?> </div> </div> @@ -323,7 +323,7 @@ default: require_once ('./admin-header.php'); ?> <?php if ( isset($_GET['posted']) ) : ?> -<div class="updated"><p><?php printf(__('Post saved. <a href="%s">View site »</a>'), get_bloginfo('home')); ?></p></div> +<div id="message" class="updated fade"><p><?php printf(__('Post saved. <a href="%s">View site »</a>'), get_bloginfo('home')); ?></p></div> <?php endif; ?> <?php if ( current_user_can('edit_posts') ) { |