]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/ttTaskHelper.class.php
Fixing sending fav reports.
[timetracker.git] / WEB-INF / lib / ttTaskHelper.class.php
index b398228b8be159a023fe7cbe0d79da038a03c98a..2bb99da424374a896a0078b21cbee4fb5913ac4f 100644 (file)
@@ -29,8 +29,8 @@
 // Class ttTaskHelper is used to help with task related operations.
 class ttTaskHelper {
 
-  // getTask - gets details of the task identified by its id. 
-  static function getTask($id)
+  // get - gets details of a task identified by its id.
+  static function get($id)
   {
     global $user;
  
@@ -79,13 +79,12 @@ class ttTaskHelper {
 
     $sql = "select id from tt_tasks where team_id = $user->team_id and name = ".
       $mdb2->quote($task_name)." and (status = 1 or status = 0)";
-       $res = $mdb2->query($sql);
+      $res = $mdb2->query($sql);
 
-       if (!is_a($res, 'PEAR_Error')) {
+      if (!is_a($res, 'PEAR_Error')) {
       $val = $res->fetchRow();
-         if ($val['id']) {
+      if ($val['id'])
         return $val;
-      }
     }
     return false;
   }
@@ -185,7 +184,7 @@ class ttTaskHelper {
     return $last_id;
   }
  
- // update function updates a task in database.
+ // update function updates a task in the database.
   static function update($fields)
   {
     global $user;