X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/d26c95718cac0a2994ab4e9633b59f420a0816b4..fd3db1c1a2b975a23c907b2e9b714a0cfe47f3e0:/import.php diff --git a/import.php b/import.php index a76af182..7d61e038 100644 --- a/import.php +++ b/import.php @@ -38,7 +38,7 @@ 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') { @@ -47,7 +47,7 @@ if ($request->getMethod() == 'POST') { $import->importXml(); if ($errors->isEmpty()) $messages->add($i18n->getKey('form.import.success')); -} +} // POST $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); $smarty->assign('title', $i18n->getKey('title.import'));