fix syntax error

This commit is contained in:
Uwe Steinmann 2016-03-18 15:32:49 +01:00
parent c09979eaed
commit 889a080339

View File

@ -41,7 +41,7 @@ if (!is_object($workflow)) {
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
if($view) {
$view->setParam('workflow'=>$workflow);
$view->setParam('workflow', $workflow);
$view($_GET);
exit;
}