Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/wp-diff.php

    r17781 r16660  
    6161
    6262    /**
    63      * Constructor - Call parent constructor with params array.
     63     * PHP4 Constructor - Call parent constructor with params array.
    6464     *
    6565     * This will set class properties based on the key value pairs in the array.
     
    6969     * @param array $params
    7070     */
    71     function __construct( $params = array() ) {
    72         parent::__construct( $params );
     71    function Text_Diff_Renderer_Table( $params = array() ) {
     72        $parent = get_parent_class($this);
     73        $this->$parent( $params );
    7374    }
    7475
Note: See TracChangeset for help on using the changeset viewer.