diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-27 00:00:43 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-27 00:00:43 -0400 |
commit | 1823430d13508fec5de39264bb4fe1224716def2 (patch) | |
tree | f911a412f1b8be2471bcb66c7fed8adf675c8d4a /app/Model/ProjectIntegration.php | |
parent | 7a22f4c6d47a3e5d447ebeeef094092a4a4b0ad2 (diff) |
PicoDb update
Diffstat (limited to 'app/Model/ProjectIntegration.php')
-rw-r--r-- | app/Model/ProjectIntegration.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Model/ProjectIntegration.php b/app/Model/ProjectIntegration.php index 98ff8d4c..bcbfeae5 100644 --- a/app/Model/ProjectIntegration.php +++ b/app/Model/ProjectIntegration.php @@ -39,7 +39,7 @@ class ProjectIntegration extends Base */ public function saveParameters($project_id, array $values) { - if ($this->db->table(self::TABLE)->eq('project_id', $project_id)->count() === 1) { + if ($this->db->table(self::TABLE)->eq('project_id', $project_id)->exists()) { return $this->db->table(self::TABLE)->eq('project_id', $project_id)->update($values); } @@ -61,6 +61,6 @@ class ProjectIntegration extends Base ->table(self::TABLE) ->eq('project_id', $project_id) ->eq($option, $value) - ->count() === 1; + ->exists(); } } |