Opened 8 years ago

Closed 8 years ago

#786 closed defect (bug) (fixed)

Wrong use of current userinfo when handling comments

Reported by: anonymousbugger Owned by: matt
Priority: normal Milestone:
Component: General Version: 1.5
Severity: minor Keywords:
Cc:

Description

In file: http://cvs.sourceforge.net/viewcvs.py/cafelog/wordpress/wp-comments-post.php?rev=1.27&view=markup

The code:
<pre> If the user is logged in
get_currentuserinfo();
if ( $user_ID ) :

$comment_author = $user_login;</pre>

Should be replaced with:
<pre> If the user is logged in
get_currentuserinfo();
if ( $user_ID ) :

$comment_author = $user_identity;</pre>

Change History (5)

  • Patch set to No

Confirmed. While we're on the subject, two lines below that line, "http://" should NOT be removed as this breaks the links on commentors' names.

Agree.

I also get this issue so I manually changed it.

comment:5   matt8 years ago

  • fixed_in_version set to 1.5
  • Owner changed from anonymous to matt
  • Resolution changed from 10 to 20
  • Status changed from new to closed

Thanks!

Note: See TracTickets for help on using tickets.