Fixing incorrect use of Cache::gc(). It has no parameters for now.

This commit is contained in:
mark_story 2010-07-26 22:38:12 -04:00
parent 2f1aa0a97f
commit b3febb483e

View file

@ -89,6 +89,6 @@ class CacheSession implements CakeSessionHandlerInterface {
* @access private
*/
public static function gc($expires = null) {
return Cache::gc(Configure::read('Session.handler.config'));
return Cache::gc();
}
}