Changeset 9812
- Timestamp:
- 11/20/08 13:36:44 (2 months ago)
- Files:
-
- trunk/wp-includes/classes.php (modified) (1 diff)
- trunk/wp-includes/comment-template.php (modified) (1 diff)
- trunk/wp-includes/script-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/classes.php
r9685 r9812 823 823 824 824 //display this element 825 if ( ! empty( $args[0] ) ) 826 $args[0]['has_children'] = ! empty( $children_elements[$element->$id_field] ); 825 827 $cb_args = array_merge( array(&$output, $element, $depth), $args); 826 828 call_user_func_array(array(&$this, 'start_el'), $cb_args); trunk/wp-includes/comment-template.php
r9808 r9812 1169 1169 } 1170 1170 ?> 1171 <<?php echo $tag ?> <?php comment_class( ) ?> id="comment-<?php comment_ID() ?>">1171 <<?php echo $tag ?> <?php comment_class(empty( $args['has_children'] ) ? '' : 'parent') ?> id="comment-<?php comment_ID() ?>"> 1172 1172 <?php if ( 'ul' == $args['style'] ) : ?> 1173 1173 <div id="div-comment-<?php comment_ID() ?>"> trunk/wp-includes/script-loader.php
r9805 r9812 42 42 $scripts->default_version = get_bloginfo( 'version' ); 43 43 44 $scripts->add( 'common', '/wp-admin/js/common.js', array('jquery', 'hoverIntent'), '200811 18' );44 $scripts->add( 'common', '/wp-admin/js/common.js', array('jquery', 'hoverIntent'), '20081120' ); 45 45 $scripts->add( 'sack', '/wp-includes/js/tw-sack.js', false, '1.6.1' ); 46 46
