diff options
author | dipsol <dipsol@ampache> | 2008-12-10 15:44:38 +0000 |
---|---|---|
committer | dipsol <dipsol@ampache> | 2008-12-10 15:44:38 +0000 |
commit | 1d990900fb4228df331f71e1810144f063c754bf (patch) | |
tree | a754b58f879873c290144fe40b769f84dcc89f01 | |
parent | 383640e9b6388cfb04307d9f8721d92595fef96f (diff) | |
download | ampache-1d990900fb4228df331f71e1810144f063c754bf.tar.gz ampache-1d990900fb4228df331f71e1810144f063c754bf.tar.bz2 ampache-1d990900fb4228df331f71e1810144f063c754bf.zip |
Fixed an call to debug_event, added an third parameter which is mandatory.
-rw-r--r-- | lib/class/catalog.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php index fc2b9bba..c35bb7dd 100644 --- a/lib/class/catalog.class.php +++ b/lib/class/catalog.class.php @@ -1245,7 +1245,7 @@ class Catalog { $token = xmlRpcClient::ampache_handshake($this->path,$this->key); if (!$token) { - debug_event('XMLCLIENT','Error No Token returned'); + debug_event('XMLCLIENT','Error No Token returned', 2); Error::display('general'); return; } |