Changeset 4144 for trunk/wp-admin/moderation.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/moderation.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/moderation.php
r4005 r4144 48 48 case 'approve': 49 49 wp_set_comment_status($key, 'approve'); 50 if ( get_ settings('comments_notify') == true ) {50 if ( get_option('comments_notify') == true ) { 51 51 wp_notify_postauthor($key); 52 52 } … … 126 126 foreach($comments as $comment) { 127 127 ++$i; 128 $comment_date = mysql2date(get_ settings("date_format") . " @ " . get_settings("time_format"), $comment->comment_date);128 $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date); 129 129 $post_title = $wpdb->get_var("SELECT post_title FROM $wpdb->posts WHERE ID='$comment->comment_post_ID'"); 130 130 if ($i % 2) $class = 'js-unapproved alternate';
Note: See TracChangeset
for help on using the changeset viewer.