Commit b35c8a293e575ec6b67a663c0d7a936a74f83e17

Authored by nbm
1 parent ec4efcd4

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 }
... ...