diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-11-29 20:42:26 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-11-29 20:42:26 +0000 |
commit | 5f145cfe8f34f17350a833549df4850792e00ecd (patch) | |
tree | 813c25759870984ea360e59e2f3f1d119b18b524 /lib/search.php | |
parent | c1c10a18288b598da729b3cbb2ad5fcfae3e4b30 (diff) | |
download | ampache-5f145cfe8f34f17350a833549df4850792e00ecd.tar.gz ampache-5f145cfe8f34f17350a833549df4850792e00ecd.tar.bz2 ampache-5f145cfe8f34f17350a833549df4850792e00ecd.zip |
fixed a problem with the error handler that was failing to log a vast majority of the errors :S
Diffstat (limited to 'lib/search.php')
-rw-r--r-- | lib/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/search.php b/lib/search.php index c84791e8..ac5a0873 100644 --- a/lib/search.php +++ b/lib/search.php @@ -150,7 +150,7 @@ function search_song($data,$operator,$method,$limit) { $where_sql = rtrim($where_sql,$operator); $sql = $base_sql . $table_sql . " WHERE" . $where_sql . $limit_sql; - + $db_results = mysql_query($sql, dbh()); while ($r = mysql_fetch_assoc($db_results)) { |