X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=import.php;h=f604c4ff6217789844cfa79d8982b3e5b713d0aa;hb=b4b57ea6a41c263250715f72248d48eae22f5476;hp=47493db1e494d1bfb05adf6fa70e18759b35b627;hpb=098a79f0819ebb89b7d48df4a6b154af4560f68e;p=timetracker.git diff --git a/import.php b/import.php index 47493db1..f604c4ff 100644 --- a/import.php +++ b/import.php @@ -38,19 +38,18 @@ if (!ttAccessCheck(right_administer_site)) { $form = new Form('importForm'); $form->addInput(array('type'=>'upload','name'=>'xmlfile','value'=>'browse','maxsize'=>16777216)); // 16 MB file upload limit. -// Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 16M. +// Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 16M. $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.import'))); if ($request->getMethod() == 'POST') { $import = new ttImportHelper($errors); $import->importXml(); - if ($errors->isEmpty()) + if ($errors->no()) $messages->add($i18n->getKey('form.import.success')); -} +} // POST $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); $smarty->assign('title', $i18n->getKey('title.import')); $smarty->assign('content_page_name', 'import.tpl'); $smarty->display('index.tpl'); -?> \ No newline at end of file