From 7dc071d1f90f70e1e5e8da0ff0e35e5aa0c26849 Mon Sep 17 00:00:00 2001 From: vargenau Date: Mon, 16 Feb 2015 09:33:10 +0000 Subject: [PATCH] Use parent::__construct git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@9540 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/WikiTheme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WikiTheme.php b/lib/WikiTheme.php index aedb26254..dc717b065 100644 --- a/lib/WikiTheme.php +++ b/lib/WikiTheme.php @@ -1858,7 +1858,7 @@ class SubmitButton extends HtmlElement */ 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) -- 2.45.0