X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=notification_add.php;h=80f46bb2e65b99ecb02f60799c4337e2abc5458b;hb=ba0b5f34efabfeded3112115086eaa9d00f2a345;hp=8a0cddf16854397c500ca466a678d72c570a68b7;hpb=d26c95718cac0a2994ab4e9633b59f420a0816b4;p=timetracker.git diff --git a/notification_add.php b/notification_add.php index 8a0cddf1..80f46bb2 100644 --- a/notification_add.php +++ b/notification_add.php @@ -41,7 +41,7 @@ if (!ttAccessCheck(right_manage_team)) { $fav_reports = ttFavReportHelper::getReports($user->id); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { $cl_fav_report = trim($request->getParameter('fav_report')); $cl_cron_spec = trim($request->getParameter('cron_spec')); $cl_email = trim($request->getParameter('email')); @@ -62,13 +62,13 @@ $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'cron_spec','sty $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','style'=>'width: 250px;','value'=>$cl_email)); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add'))); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { // Validate user input. - if (!$cl_fav_report) $errors->add($i18n->getKey('error.report')); - if (!ttValidCronSpec($cl_cron_spec)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.cron_schedule')); - if (!ttValidEmail($cl_email)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.email')); + if (!$cl_fav_report) $err->add($i18n->getKey('error.report')); + if (!ttValidCronSpec($cl_cron_spec)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.cron_schedule')); + if (!ttValidEmail($cl_email)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email')); - if ($errors->isEmpty()) { + if ($err->no()) { // Calculate next execution time. $next = tdCron::getNextOccurrence($cl_cron_spec, mktime()); @@ -82,9 +82,9 @@ if ($request->getMethod() == 'POST') { header('Location: notifications.php'); exit(); } else - $errors->add($i18n->getKey('error.db')); + $err->add($i18n->getKey('error.db')); } -} // POST +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('title', $i18n->getKey('title.add_notification'));