X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/11441db31dcbed7b2070e800bcb1b0e6547b86bd..8ef07358aad8988844648aa9c12ceb3047fa8b2d:/cf_monthly_quota.php 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