X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=import.php;h=ce6aa723054dd3ded178aa578168f3a7eafd2f8f;hb=cd5e077ecb497431decde4835138b877d63b261c;hp=e4a74eea53b88b9de498421e43a499df68c19586;hpb=9e82b53fc5d8cb1e54b5fde774fa68a916f28b4c;p=timetracker.git diff --git a/import.php b/import.php index e4a74eea..ce6aa723 100644 --- a/import.php +++ b/import.php @@ -37,17 +37,16 @@ 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. +$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->isPost()) { $import = new ttImportHelper($err); $import->importXml(); - if ($err->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'));