Changeset 2518
- Timestamp:
- 04/06/2005 03:13:56 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-functions.php
r2516 r2518 21 21 get_currentuserinfo(); 22 22 23 if ( file_exists( TEMPLATEPATH . $file ) ) 24 require( TEMPLATEPATH . $file ); 23 define('COMMENTS_TEMPLATE', true); 24 $include = apply_filters('comments_template', TEMPLATEPATH . $file ); 25 if ( file_exists( $include ) ) 26 require( $include ); 25 27 else 26 28 require( ABSPATH . 'wp-content/themes/default/comments.php');
Note: See TracChangeset
for help on using the changeset viewer.