Changes from branches/2.6/wp-includes/pluggable.php at r8582 to trunk/wp-includes/pluggable.php at r8324
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r8582 r8324 1513 1513 $args = wp_parse_args( $args, $defaults ); 1514 1514 1515 // PEAR Text_Diff is lame; it includes things from include_path rather than it's own path. 1516 // Not sure of the ramifications of disttributing modified code. 1517 ini_set('include_path', '.' . PATH_SEPARATOR . ABSPATH . WPINC ); 1518 1515 1519 if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) ) 1516 1520 require( ABSPATH . WPINC . '/wp-diff.php' ); … … 1531 1535 $diff = $renderer->render($text_diff); 1532 1536 1537 ini_restore('include_path'); 1538 1533 1539 if ( !$diff ) 1534 1540 return '';
Note: See TracChangeset
for help on using the changeset viewer.