]> wagnertech.de Git - timetracker.git/blobdiff - mobile/time_delete.php
Some refactoring for subgroups.
[timetracker.git] / mobile / time_delete.php
index 5d6918c592c3b5b76117ffbcbd8d4e657ceb769c..399895c7a8eac84ce47c4c4b9a519ecb900feab1 100644 (file)
@@ -38,13 +38,13 @@ if (!ttAccessAllowed('track_own_time')) {
   exit();
 }
 $cl_id = (int)$request->getParameter('id');
-// Get the time record we are deleting.
 $time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser());
 if (!$time_rec || $time_rec['invoice_id']) {
   // Prohibit deleting not ours or invoiced records.
   header('Location: access_denied.php');
   exit();
 }
+// End of access checks.
 
 // Escape comment for presentation.
 $time_rec['comment'] = htmlspecialchars($time_rec['comment']);