diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-29 11:16:30 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-29 11:16:30 -0500 |
commit | 4fe5de82b75b114144efa0959b312480b726b8df (patch) | |
tree | 2f3e37394f45f22568efc84ea7980d0e7872bafc | |
parent | 252abb8beab2257f54b0f1a56e330d938f4be1d5 (diff) | |
download | ampache-4fe5de82b75b114144efa0959b312480b726b8df.tar.gz ampache-4fe5de82b75b114144efa0959b312480b726b8df.tar.bz2 ampache-4fe5de82b75b114144efa0959b312480b726b8df.zip |
Session::gc takes a parameter
It's unused, but it's part of PHP's session interface so there it is.
-rw-r--r-- | lib/ui.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 3769881a..02ec811a 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -538,7 +538,7 @@ function print_bool($value) { */ function show_now_playing() { - Session::gc(); + Session::gc(null); Stream::gc_now_playing(); $web_path = Config::get('web_path'); |