Changeset 8581 for trunk/wp-includes/pluggable.php
- Timestamp:
- 08/07/2008 09:02:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r8572 r8581 1531 1531 $args = wp_parse_args( $args, $defaults ); 1532 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 );1536 1537 1533 if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) ) 1538 1534 require( ABSPATH . WPINC . '/wp-diff.php' ); … … 1553 1549 $diff = $renderer->render($text_diff); 1554 1550 1555 ini_restore('include_path');1556 1557 1551 if ( !$diff ) 1558 1552 return '';
Note: See TracChangeset
for help on using the changeset viewer.