Make WordPress Core


Ignore:
Timestamp:
08/06/2008 01:11:39 AM (18 years ago)
Author:
azaozz
Message:

Revert 8563

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/wp-includes/pluggable.php

    r8563 r8566  
    15101510 */
    15111511function wp_text_diff( $left_string, $right_string, $args = null ) {
    1512     if ( defined( 'WP_INCLUDE_PATH_DISABLED' ) )
    1513         return '';
    1514 
    15151512    $defaults = array( 'title' => '', 'title_left' => '', 'title_right' => '' );
    15161513    $args = wp_parse_args( $args, $defaults );
     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 );
    15171518
    15181519    if ( !class_exists( 'WP_Text_Diff_Renderer_Table' ) )
     
    15341535    $diff = $renderer->render($text_diff);
    15351536
     1537    ini_restore('include_path');
     1538
    15361539    if ( !$diff )
    15371540        return '';
Note: See TracChangeset for help on using the changeset viewer.