X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=import.php;h=d86628b6cf22dafd323691d85fc97306ea1c1183;hb=eb55e2f8ca3859482a389795e03b45283e14ef36;hp=7d61e038e7773f357017b69ba8bd716dd4d01faf;hpb=fd3db1c1a2b975a23c907b2e9b714a0cfe47f3e0;p=timetracker.git diff --git a/import.php b/import.php index 7d61e038..d86628b6 100644 --- a/import.php +++ b/import.php @@ -41,13 +41,13 @@ $form->addInput(array('type'=>'upload','name'=>'xmlfile','value'=>'browse','maxs // 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') { +if ($request->isPost()) { - $import = new ttImportHelper($errors); + $import = new ttImportHelper($err); $import->importXml(); - if ($errors->isEmpty()) + if ($err->no()) $messages->add($i18n->getKey('form.import.success')); -} // POST +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray()) ); $smarty->assign('title', $i18n->getKey('title.import'));