diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-30 01:49:13 +0000 |
commit | 318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240 (patch) | |
tree | b8b9d60e5fdc3459b56da39825091b0f2c38ce77 /lib/class/dba.class.php | |
parent | 7cdf1e980d294085fd1053a1c50cede127bf1352 (diff) | |
download | ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.gz ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.tar.bz2 ampache-318700ad7cd0e67bf02a1e6777cb5c2cd4c3b240.zip |
fixed paging on browse catalogs page, disabled the write_tags script and removed a dbl escape on the preferences
Diffstat (limited to 'lib/class/dba.class.php')
-rw-r--r-- | lib/class/dba.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/dba.class.php b/lib/class/dba.class.php index 3facabd3..3a348a46 100644 --- a/lib/class/dba.class.php +++ b/lib/class/dba.class.php @@ -56,6 +56,7 @@ class Dba { // Run the query $resource = mysql_query($sql,self::dbh()); + debug_event('Query',$sql,'6'); // Save the query, to make debug easier self::$_sql = $sql; @@ -85,7 +86,6 @@ class Dba { public static function fetch_assoc($resource) { $result = mysql_fetch_assoc($resource); - debug_event('Assoc',self::$_sql,'6'); if (!$result) { return array(); |