X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=import.php;h=f822cb793be239ce8c3162ad7195b51d088019d1;hb=d5f3d27d84a808f8333822de5662b2cd3a2e322c;hp=23715e080c0c6a9af59871a8a7a96a15b6241be1;hpb=7fafd0cdc53c376b557a5504af53dacdfbcdb533;p=timetracker.git diff --git a/import.php b/import.php index 23715e08..f822cb79 100644 --- a/import.php +++ b/import.php @@ -31,24 +31,24 @@ 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'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.import'))); +$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->get('button.import'))); if ($request->isPost()) { $import = new ttImportHelper($err); $import->importXml(); - if ($err->no()) $msg->add($i18n->getKey('form.import.success')); + if ($err->no()) $msg->add($i18n->get('form.import.success')); } // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); -$smarty->assign('title', $i18n->getKey('title.import')); +$smarty->assign('title', $i18n->get('title.import')); $smarty->assign('content_page_name', 'import.tpl'); $smarty->display('index.tpl');