X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=import.php;h=dd30ad3a8f086d9a69743991f26b8df755c07975;hb=73bd55c5aaa9459806ef9fa899cc5a24513727bc;hp=f604c4ff6217789844cfa79d8982b3e5b713d0aa;hpb=1fad211ab12fc66117094e33425f8414fccd2cfa;p=timetracker.git diff --git a/import.php b/import.php index f604c4ff..dd30ad3a 100644 --- a/import.php +++ b/import.php @@ -31,23 +31,22 @@ import('ttImportHelper'); import('form.Form'); // Access check. -if (!ttAccessCheck(right_administer_site)) { +if (!ttAccessAllowed('administer_site')) { header('Location: access_denied.php'); exit(); } $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. +$form->addInput(array('type'=>'upload','name'=>'xmlfile','value'=>'browse','maxsize'=>67108864)); // 64 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 64M. $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.import'))); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { - $import = new ttImportHelper($errors); + $import = new ttImportHelper($err); $import->importXml(); - if ($errors->no()) - $messages->add($i18n->getKey('form.import.success')); -} // POST + if ($err->no()) $msg->add($i18n->getKey('form.import.success')); +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); $smarty->assign('title', $i18n->getKey('title.import'));