HOR-3670
Fixed DynaformEditor class name
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
<?php
|
||||
|
||||
class DynaformEditor extends WebResource
|
||||
/**
|
||||
* Created on 21/12/2007
|
||||
* Dynaform - Dynaform
|
||||
/**
|
||||
*
|
||||
* @package workflow.engine.classes
|
||||
*/class DynaformEditor extends WebResource
|
||||
{
|
||||
|
||||
private $isOldCopy = false;
|
||||
@@ -36,7 +42,7 @@ class DynaformEditor extends WebResource
|
||||
* @param string $get
|
||||
* @return void
|
||||
*/
|
||||
public function dynaformEditor($get)
|
||||
public function DynaformEditor($get)
|
||||
{
|
||||
$this->panelConf = array_merge($this->panelConf, $this->defaultConfig['Editor']);
|
||||
//'title' => G::LoadTranslation('ID_DYNAFORM_EDITOR').' - ['.$this->title.']',
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -80,7 +80,7 @@ if (isset( $_GET['bpmn'] ) && $_GET['bpmn'] == '1') {
|
||||
$_SESSION['dynaform_editor'] = 'processmap';
|
||||
}
|
||||
|
||||
$editor = new dynaformEditor( $_POST );
|
||||
$editor = new DynaformEditor( $_POST );
|
||||
$editor->file = $dynaform->getDynFilename();
|
||||
$editor->home = PATH_DYNAFORM;
|
||||
$editor->title = $dynaform->getDynTitle();
|
||||
|
||||
@@ -15,7 +15,7 @@ if (isset($_REQUEST['dynaformEditorParams'])) {
|
||||
$dynaform = new Dynaform();
|
||||
$dynaform->load($_REQUEST['DYN_UID']);
|
||||
|
||||
$editor = new dynaformEditor(array());
|
||||
$editor = new DynaformEditor(array());
|
||||
$editor->file = $dynaform->getDynFilename();
|
||||
$editor->home = PATH_DYNAFORM;
|
||||
$editor->title = $dynaform->getDynTitle();
|
||||
|
||||
Reference in New Issue
Block a user