Fixed determination of a multi-part browser language such as pt-br.
[timetracker.git] / import.php
index 7d61e03..23715e0 100644 (file)
@@ -41,13 +41,12 @@ $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())
-    $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'));