X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_monthly_quota.php;h=14d0f3fbcc03f84cea86c549e4ffdba5a15fdd7e;hb=8ef07358aad8988844648aa9c12ceb3047fa8b2d;hp=0264684893691cdcb8a0c51e547ac99a93cc6e66;hpb=b76e427286701104c84a869461ceb7339b1b943a;p=timetracker.git diff --git a/cf_monthly_quota.php b/cf_monthly_quota.php index 02646848..14d0f3fb 100644 --- a/cf_monthly_quota.php +++ b/cf_monthly_quota.php @@ -30,9 +30,15 @@ $quota = new MonthlyQuota(); if ($request->isPost()){ $postedYear = $request->getParameter("years"); $year = intval($postedYear); + $res = false; for ($i=0; $i < count($months); $i++){ - $quota->update($postedYear, $i+1, $request->getParameter($months[$i])); + $res = $quota->update($postedYear, $i+1, $request->getParameter($months[$i])); } + if ($res){ + header('Location: profile_edit.php'); + exit(); + } else + $err->add($i18n->getKey('error.db')); } // returns months where January is month 1, not 0