Parcourir la source

bugfix Undefined constant ajax

andre il y a 1 an
Parent
commit
a568be6545
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      core/UI/Traits/ContainerElements.php

+ 1 - 1
core/UI/Traits/ContainerElements.php

@@ -52,7 +52,7 @@ trait ContainerElements
 
         $this->addElementToContainer($element, $containerName);
 
-        if (!$element->wasInitialized() && $this->getRequestValue(ajax) == 1)
+        if (!$element->wasInitialized() && $this->getRequestValue('ajax') == 1)
         {
             $element->runInitContentProcess();
         }