From b44ad48fd596d37f5e4e02ad78bab0fe97ec6f27 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 18 Apr 2012 07:17:35 +0200 Subject: [PATCH] Another PostgreSQL issue (hopefully) fixed. --- src/IDF/Views.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IDF/Views.php b/src/IDF/Views.php index 64979e7..4b21992 100644 --- a/src/IDF/Views.php +++ b/src/IDF/Views.php @@ -389,7 +389,7 @@ class IDF_Views if ($user->isAnonymous()) { - $authSql = new Pluf_SQL('private=%s', $false); + $authSql = new Pluf_SQL($db->qn('private').'=%s', $false); $sql->SAnd($authSql); } else if (!$user->administrator) { @@ -403,7 +403,7 @@ class IDF_Views $permSql = new Pluf_SQL("model_class='IDF_Project' AND owner_class='Pluf_User' AND owner_id=%s AND negative=".$false, $user->id); $rows = Pluf::factory('Pluf_RowPermission')->getList(array('filter' => $permSql->gen())); - $authSql = new Pluf_SQL('private=%s', $false); + $authSql = new Pluf_SQL($db->qn('private').'=%s', $false); if ($rows->count() > 0) { $ids = array(); foreach ($rows as $row) {