Changeset 12733 for trunk/wp-includes/pluggable.php
- Timestamp:
- 01/15/2010 10:11:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r12653 r12733 977 977 978 978 $comment_author_domain = @gethostbyaddr($comment->comment_author_IP); 979 979 980 980 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 981 981 // we want to reverse this for the plain text arena of emails. … … 1073 1073 $comment_author_domain = @gethostbyaddr($comment->comment_author_IP); 1074 1074 $comments_waiting = $wpdb->get_var("SELECT count(comment_ID) FROM $wpdb->comments WHERE comment_approved = '0'"); 1075 1075 1076 1076 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 1077 1077 // we want to reverse this for the plain text arena of emails. 1078 1078 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); 1079 1079 1080 1080 switch ($comment->comment_type) 1081 1081 { … … 1165 1165 $user_login = stripslashes($user->user_login); 1166 1166 $user_email = stripslashes($user->user_email); 1167 1167 1168 1168 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 1169 1169 // we want to reverse this for the plain text arena of emails.
Note: See TracChangeset
for help on using the changeset viewer.