Marius Cramer
2015-04-17 9d983375dc86ecb80a999d58a938f063c60e63a4
interface/web/sites/cron_edit.php
@@ -87,7 +87,7 @@
      if($_SESSION["s"]["user"]["typ"] != 'admin') {
         // Get the limits of the client
         $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]);
         $client = $app->db->queryOneRecord("SELECT limit_cron, limit_cron_type FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ", $client_group_id);
         $client = $app->db->queryOneRecord("SELECT limit_cron, limit_cron_type FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ?", $client_group_id);
         // When the record is updated
         if($this->id > 0) {
@@ -95,7 +95,7 @@
         } else {
            // Check if the user may add another cron job.
            if($client["limit_cron"] >= 0) {
               $tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM cron WHERE sys_groupid = ", $client_group_id);
               $tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM cron WHERE sys_groupid = ?", $client_group_id);
               if($tmp["number"] >= $client["limit_cron"]) {
                  $app->error($app->tform->wordbook["limit_cron_txt"]);
               }