From: Anže Videnič Date: Tue, 24 May 2016 07:17:09 +0000 (+0200) Subject: Added a redirect back to profile after monthly quota is saved. X-Git-Tag: timetracker_1.19-1~1702^2^2~2 X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/commitdiff_plain/8ef07358aad8988844648aa9c12ceb3047fa8b2d Added a redirect back to profile after monthly quota is saved. --- 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