Ticket #40467: 40467.diff
File 40467.diff, 787 bytes (added by , 8 years ago) |
---|
-
src/wp-includes/default-constants.php
340 340 * Filesystem path to the current active template directory 341 341 * @since 1.5.0 342 342 */ 343 define('TEMPLATEPATH', get_template_directory()); 343 if ( !defined('TEMPLATEPATH') ) 344 define('TEMPLATEPATH', get_template_directory()); 344 345 345 346 /** 346 347 * Filesystem path to the current active template stylesheet directory 347 348 * @since 2.1.0 348 349 */ 349 define('STYLESHEETPATH', get_stylesheet_directory()); 350 if ( !defined('STYLESHEETPATH') ) 351 define('STYLESHEETPATH', get_stylesheet_directory()); 350 352 351 353 /** 352 354 * Slug of the default theme for this install.