diff --git a/include/objectManager.php b/include/objectManager.php index c4b5825..90443e3 100644 --- a/include/objectManager.php +++ b/include/objectManager.php @@ -258,16 +258,17 @@ class ObjectManager $oObject = new $this->sClass(); - /* Display help if it is exists */ - if(method_exists(new $this->sClass, "objectDisplayAddItemHelp")) - $oObject->objectDisplayAddItemHelp(); - /* Display errors, if any, and fetch form data */ if($this->displayErrors($sErrors)) { global $aClean; $oObject->getOutputEditorValues($aClean); } + + /* Display help if it is exists */ + if(method_exists(new $this->sClass, "objectDisplayAddItemHelp")) + $oObject->objectDisplayAddItemHelp(); + echo "
\n"; $oObject->outputEditor();