- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/comments-popup.php
r4144 r3115 7 7 <html xmlns="http://www.w3.org/1999/xhtml"> 8 8 <head> 9 <title><?php echo get_ option('blogname'); ?> - Comments on <?php the_title(); ?></title>9 <title><?php echo get_settings('blogname'); ?> - Comments on <?php the_title(); ?></title> 10 10 11 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_ option('blog_charset'); ?>" />11 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 12 12 <style type="text/css" media="screen"> 13 13 @import url( <?php bloginfo('stylesheet_url'); ?> ); … … 18 18 <body id="commentspopup"> 19 19 20 <h1 id="header"><a href="" title="<?php echo get_ option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1>20 <h1 id="header"><a href="" title="<?php echo get_settings('blogname'); ?>"><?php echo get_settings('blogname'); ?></a></h1> 21 21 22 22 <h2 id="comments">Comments</h2> 23 23 24 <p><a href="<?php echo get_ option('siteurl'); ?>/wp-commentsrss2.php?p=<?php echo $post->ID; ?>"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a></p>24 <p><a href="<?php echo get_settings('siteurl'); ?>/wp-commentsrss2.php?p=<?php echo $post->ID; ?>"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a></p> 25 25 26 26 <?php if ('open' == $post->ping_status) { ?> 27 <p>The <a bbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em><?php trackback_url() ?></em></p>27 <p>The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is: <em><?php trackback_url() ?></em></p> 28 28 <?php } ?> 29 29 30 30 <?php 31 31 // this line is WordPress' motor, do not delete it. 32 $commenter = wp_get_current_commenter(); 33 extract($commenter); 32 $comment_author = (isset($_COOKIE['comment_author_' . COOKIEHASH])) ? trim($_COOKIE['comment_author_'. COOKIEHASH]) : ''; 33 $comment_author_email = (isset($_COOKIE['comment_author_email_'. COOKIEHASH])) ? trim($_COOKIE['comment_author_email_'. COOKIEHASH]) : ''; 34 $comment_author_url = (isset($_COOKIE['comment_author_url_'. COOKIEHASH])) ? trim($_COOKIE['comment_author_url_'. COOKIEHASH]) : ''; 34 35 $comments = get_approved_comments($id); 35 36 $post = get_post($id); … … 56 57 <p>Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code><?php echo allowed_tags(); ?></code></p> 57 58 58 <form action="<?php echo get_ option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">59 <form action="<?php echo get_settings('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 59 60 <p> 60 61 <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" /> … … 71 72 <p> 72 73 <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" /> 73 <label for="url"><a bbr title="Universal Resource Locator">URL</abbr></label>74 <label for="url"><acronym title="Uniform Resource Identifier">URI</acronym></label> 74 75 </p> 75 76 … … 103 104 <script type="text/javascript"> 104 105 <!-- 105 document.onkeypress = function esc(e) { 106 document.onkeypress = function esc(e) { 106 107 if(typeof(e) == "undefined") { e=event; } 107 108 if (e.keyCode == 27) { self.close(); }
Note: See TracChangeset
for help on using the changeset viewer.