Changeset 8497 for trunk/wp-includes/comment-template.php
- Timestamp:
- 07/30/2008 06:21:14 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/comment-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r8164 r8497 665 665 666 666 define('COMMENTS_TEMPLATE', true); 667 $include = apply_filters('comments_template', TEMPLATEPATH . $file ); 667 668 $include = apply_filters('comments_template', STYLESHEETPATH . $file ); 668 669 if ( file_exists( $include ) ) 669 670 require( $include ); 671 elseif ( file_exists( TEMPLATEPATH . $file ) ) 672 require( TEMPLATEPATH . $file ); 670 673 else 671 require( WP_CONTENT_DIR . '/themes/default/comments.php');674 require( get_theme_root() . '/default/comments.php'); 672 675 } 673 676
Note: See TracChangeset
for help on using the changeset viewer.