From f281e9f01a32e877df05640b732b56a3d3d53411 Mon Sep 17 00:00:00 2001 From: Megan Watson Date: Wed, 9 Jan 2008 14:23:10 +0000 Subject: [PATCH] KTS-2812 "Fatal error after clicking 'View resolved permissions for user'." Fixed. Removed the $ in $this->$iId --- lib/users/User.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/users/User.inc b/lib/users/User.inc index edaeaf2..a836737 100644 --- a/lib/users/User.inc +++ b/lib/users/User.inc @@ -500,7 +500,7 @@ class User extends KTEntity { "WHERE $pdgTable.descriptor_id = ? AND " . "$uglTable.user_id=?"; $aParams = array($oPermissionDescriptor->getID()); - $aParams[] = $this->$iId; + $aParams[] = $this->iId; $res = DBUtil::getOneResultKey(array($sQuery, $aParams), 'num'); if (PEAR::isError($res)) { return $res; -- libgit2 0.21.4