Fix constructor

pull/2487/head
jmontoyaa 9 years ago
parent c88a5e9ea1
commit b39334d0c6
  1. 3
      main/inc/lib/formvalidator/Element/SelectTheme.php

@ -9,7 +9,8 @@ class SelectTheme extends HTML_QuickForm_select
/** /**
* Class constructor * Class constructor
*/ */
function SelectTheme($elementName=null, $elementLabel=null, $options=null, $attributes=null) { public function __construct($elementName = null, $elementLabel = null, $options = null, $attributes = null)
{
parent::__construct($elementName, $elementLabel, $options, $attributes); parent::__construct($elementName, $elementLabel, $options, $attributes);
// Get all languages // Get all languages
$themes = api_get_themes(); $themes = api_get_themes();

Loading…
Cancel
Save