Changeset 21792 for trunk/wp-includes/comment.php
- Timestamp:
- 09/10/2012 05:00:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r21599 r21792 128 128 * @return object|array|null Depends on $output value. 129 129 */ 130 function &get_comment(&$comment, $output = OBJECT) {130 function get_comment(&$comment, $output = OBJECT) { 131 131 global $wpdb; 132 132 $null = null; … … 724 724 * @return array Array of comments keyed by comment_type. 725 725 */ 726 function &separate_comments(&$comments) {726 function separate_comments(&$comments) { 727 727 $comments_by_type = array('comment' => array(), 'trackback' => array(), 'pingback' => array(), 'pings' => array()); 728 728 $count = count($comments);
Note: See TracChangeset
for help on using the changeset viewer.