Remove call to missing function - doesn't look needed, it works without.

This commit is contained in:
Nathan Gray 2010-09-08 16:19:29 +00:00
parent bb96dda0a7
commit 6d552b26d1

View File

@ -32,7 +32,6 @@
private $plugins; private $plugins;
public function __construct() { public function __construct() {
$GLOBALS['egw']->js->validate_file('.','import_dialog','importexport');
$this->plugins = importexport_helper_functions::get_plugins('all','import'); $this->plugins = importexport_helper_functions::get_plugins('all','import');
$GLOBALS['egw_info']['flags']['include_xajax'] = true; $GLOBALS['egw_info']['flags']['include_xajax'] = true;
} }
@ -127,7 +126,6 @@
} }
} }
$response = new xajaxResponse(); $response = new xajaxResponse();
$response->addScript('import_dialog.change_definition(document.getElementId(\'exec[definition]\'));');
$response->addAssign('exec[definition]','innerHTML',$sel_options['definition']); $response->addAssign('exec[definition]','innerHTML',$sel_options['definition']);
return $response->getXML(); return $response->getXML();
} }