diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-02-16 10:40:48 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-02-16 10:40:48 +0000 |
commit | fdbaa07fe5fd78cd691aba3dd32d9222bfdb0a9f (patch) | |
tree | 92ff0f3702636ed72a9c82f83579838769ea4265 /wp-content/themes/default/comments-popup.php | |
parent | 8752f7651d737da0dbe86065e708347a58b40d61 (diff) | |
download | wordpress-mu-fdbaa07fe5fd78cd691aba3dd32d9222bfdb0a9f.tar.gz wordpress-mu-fdbaa07fe5fd78cd691aba3dd32d9222bfdb0a9f.tar.xz wordpress-mu-fdbaa07fe5fd78cd691aba3dd32d9222bfdb0a9f.zip |
WP Merge to 4890
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@889 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-content/themes/default/comments-popup.php')
-rw-r--r-- | wp-content/themes/default/comments-popup.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wp-content/themes/default/comments-popup.php b/wp-content/themes/default/comments-popup.php index c812293..04dba33 100644 --- a/wp-content/themes/default/comments-popup.php +++ b/wp-content/themes/default/comments-popup.php @@ -56,6 +56,9 @@ if (!empty($post->post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $pos <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> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> +<?php if ( $user_ID ) : ?> + <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout »</a></p> +<?php else : ?> <p> <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" /> <label for="author">Name</label> @@ -72,6 +75,7 @@ if (!empty($post->post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $pos <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" /> <label for="url"><abbr title="Universal Resource Locator">URL</abbr></label> </p> +<?php endif; ?> <p> <label for="comment">Your Comment</label> |