Changeset 8564
- Timestamp:
- 08/06/08 00:44:40 (4 months ago)
- Files:
-
- trunk/wp-includes/pluggable.php (modified) (2 diffs)
- trunk/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/pluggable.php
r8562 r8564 1528 1528 */ 1529 1529 function wp_text_diff( $left_string, $right_string, $args = null ) { 1530 if ( defined( 'WP_INCLUDE_PATH_DISABLED' ) )1531 return '';1532 1533 1530 $defaults = array( 'title' => '', 'title_left' => '', 'title_right' => '' ); 1534 1531 $args = wp_parse_args( $args, $defaults ); 1532 1533 // PEAR Text_Diff is lame; it includes things from include_path rather than it's own path. 1534 // Not sure of the ramifications of disttributing modified code. 1535 ini_set('include_path', '.' . PATH_SEPARATOR . ABSPATH . WPINC ); 1535 1536 1536 1537 if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) ) … … 1552 1553 $diff = $renderer->render($text_diff); 1553 1554 1555 ini_restore('include_path'); 1556 1554 1557 if ( !$diff ) 1555 1558 return ''; trunk/wp-settings.php
r8562 r8564 195 195 else 196 196 define('WP_INCLUDE_PATH_DISABLED', true); 197 }198 199 if ( !defined('WP_LANG_DIR') ) {200 /**201 * Stores the location of the language directory. First looks for language folder in WP_CONTENT_DIR202 * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.203 *204 * @since 2.1.0205 */206 if ( file_exists(WP_CONTENT_DIR . '/languages') && @is_dir(WP_CONTENT_DIR . '/languages') ) {207 define('WP_LANG_DIR', WP_CONTENT_DIR . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH208 if (!defined('LANGDIR')) {209 // Old static relative path maintained for limited backwards compatibility - won't work in some cases210 define('LANGDIR', 'wp-content/languages');211 }212 } else {213 define('WP_LANG_DIR', ABSPATH . WPINC . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH214 if (!defined('LANGDIR')) {215 // Old relative path maintained for backwards compatibility216 define('LANGDIR', WPINC . '/languages');217 }218 }219 197 } 220 198
