Commit 5c0f00b9a975c19464377922166956f98750decb

Authored by Neil Blakey-Milner
1 parent 4b56cd91

Default db parameter to lastQuery method to null, like the rest.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3178 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 1 additions and 1 deletions
lib/database/dbutil.inc
... ... @@ -183,7 +183,7 @@ class DBUtil {
183 183 return PEAR::raiseError('Unknown return value for whereUpdate');
184 184 }
185 185  
186   - function &lastQuery($db) {
  186 + function &lastQuery($db = null) {
187 187 $db =& DBUtil::getDB();
188 188 return $db->last_query;
189 189 }
... ...