Changes in trunk/wp-includes/wp-diff.php [16660:17781]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-diff.php
r16660 r17781 61 61 62 62 /** 63 * PHP4Constructor - Call parent constructor with params array.63 * 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 Text_Diff_Renderer_Table( $params = array() ) { 72 $parent = get_parent_class($this); 73 $this->$parent( $params ); 71 function __construct( $params = array() ) { 72 parent::__construct( $params ); 74 73 } 75 74
Note: See TracChangeset
for help on using the changeset viewer.