Changes in trunk/wp-includes/wp-diff.php [17781:16660]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-diff.php
r17781 r16660 61 61 62 62 /** 63 * Constructor - Call parent constructor with params array.63 * PHP4 Constructor - Call parent constructor with params array. 64 64 * 65 65 * This will set class properties based on the key value pairs in the array. … … 69 69 * @param array $params 70 70 */ 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 ); 73 74 } 74 75
Note: See TracChangeset
for help on using the changeset viewer.