From: <var...@us...> - 2015-02-16 09:33:13
|
Revision: 9540 http://sourceforge.net/p/phpwiki/code/9540 Author: vargenau Date: 2015-02-16 09:33:10 +0000 (Mon, 16 Feb 2015) Log Message: ----------- Use parent::__construct Modified Paths: -------------- trunk/lib/WikiTheme.php Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2015-02-13 09:31:11 UTC (rev 9539) +++ trunk/lib/WikiTheme.php 2015-02-16 09:33:10 UTC (rev 9540) @@ -1858,7 +1858,7 @@ */ function __construct($text, $name = '', $class = '', $options = array()) { - $this->__construct('input', array('type' => 'submit', 'value' => $text)); + parent::__construct('input', array('type' => 'submit', 'value' => $text)); if ($name) $this->setAttr('name', $name); if ($class) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |