From ddafa3c6d71f22585748caa45be457aea6f81c42 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Sat, 30 Apr 2011 17:18:39 +0000 Subject: [PATCH] More constructor cleanup. Props ampt. see #16768 git-svn-id: http://svn.automattic.com/wordpress/trunk@17781 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/wp-diff.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/wp-diff.php b/wp-includes/wp-diff.php index 2d6a4da9b..ed36ee908 100644 --- a/wp-includes/wp-diff.php +++ b/wp-includes/wp-diff.php @@ -69,8 +69,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer { * @param array $params */ function __construct( $params = array() ) { - $parent = get_parent_class($this); - $this->$parent( $params ); + parent::__construct( $params ); } /**