Changeset 33806 for trunk/src/wp-includes/comment-functions.php
- Timestamp:
- 08/30/2015 02:18:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-functions.php
r33750 r33806 376 376 $comment_count["total_comments"] += $row['total']; 377 377 break; 378 case 1:378 case '1': 379 379 $comment_count['approved'] = $row['total']; 380 380 $comment_count['total_comments'] += $row['total']; 381 381 break; 382 case 0:382 case '0': 383 383 $comment_count['awaiting_moderation'] = $row['total']; 384 384 $comment_count['total_comments'] += $row['total'];
Note: See TracChangeset
for help on using the changeset viewer.