]> wagnertech.de Git - timetracker.git/blobdiff - time_delete.php
Some more refactoring.
[timetracker.git] / time_delete.php
index 060311e8776bdc09c1f5c846f9e2f53e2451e035..5d721ab1f4fd882a7eb599095c2297172959cf07 100644 (file)
@@ -38,13 +38,13 @@ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_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']);