Example #1
0
 public function action_edit()
 {
     RoutingEngine::setPage("runnDAILY Training Edit", "PV__300");
     $t_item = new TrainingLog($_POST);
     if ($t_item->updateItem()) {
         $affected_goals = Goal::getGoalIdsForUserInRange(User::$current_user->uid, $t_item->date);
         if ($affected_goals) {
             Goal::updatePercentForList($affected_goals);
         }
         Page::redirect("/training/");
     }
     Page::redirect("/training/");
 }