Fix class name of DynaformEditorAjax
This commit is contained in:
David Callizaya
2017-08-11 14:25:52 -04:00
parent 26102d8c52
commit 1e940d1de0
4 changed files with 6 additions and 30 deletions

View File

@@ -36,4 +36,4 @@ if (! isset( $_DBArray )) {
$_DBArray = array ();
}
$oDynaformEditorAjax = new dynaformEditorAjax( $_POST );
$oDynaformEditorAjax = new DynaformEditorAjax( $_POST );

View File

@@ -282,7 +282,7 @@ $_SESSION['_DBArray'] = $_DBArray;
// Additions to javascript
if (isset($sType) && $sType === 'javascript') {
$sCode = urlencode($pmeCode);
$editor = new dynaformEditorAjax($_POST);
$editor = new DynaformEditorAjax($_POST);
$editor->set_javascript($A, $fieldName, $sCode);
}