Ticket #11568: wp-settings.patch
| File wp-settings.patch, 632 bytes (added by raysolomon, 3 years ago) |
|---|
-
wp-settings.php
713 713 // Load functions for active theme. 714 714 if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') ) 715 715 include(STYLESHEETPATH . '/functions.php'); 716 if ( file_exists(TEMPLATEPATH . '/functions.php') )716 if ( !file_exists(STYLESHEETPATH . '/functions.php') && file_exists(TEMPLATEPATH . '/functions.php') ) 717 717 include(TEMPLATEPATH . '/functions.php'); 718 718 719 719 // Load in support for template functions which the theme supports
