diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-19 08:34:52 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-19 08:34:52 +0000 |
commit | b372d114dce875b9e69230fe903780ae50195584 (patch) | |
tree | f2dd58be35f5ec8c7ab4cee55decec3b2b931bae /lib/class/stream.class.php | |
parent | f4d94f034e6ca26d37244028d8ccb08ddbab0e8c (diff) | |
download | ampache-b372d114dce875b9e69230fe903780ae50195584.tar.gz ampache-b372d114dce875b9e69230fe903780ae50195584.tar.bz2 ampache-b372d114dce875b9e69230fe903780ae50195584.zip |
fixed an album art config parsing problem, Thanks Karl Hungus more work on xml class and api mojo, handshake logic in place
Diffstat (limited to 'lib/class/stream.class.php')
-rw-r--r-- | lib/class/stream.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index c661b351..def353d5 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -623,7 +623,7 @@ class Stream { public static function _auto_init() { // Generate the session ID - self::$session = md5(uniqid(rand(), true));; + self::$session = md5(uniqid(rand(), true)); } // auto_init |