From c570a6b026fecd67beee295f357a71a20bced67a Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Thu, 22 Dec 2011 22:01:57 +0000 Subject: [PATCH] Remove superfluous parameter to eliminate warning --- source/lib/SihnonFramework/Session.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/SihnonFramework/Session.class.php b/source/lib/SihnonFramework/Session.class.php index c179b6f..a75587d 100644 --- a/source/lib/SihnonFramework/Session.class.php +++ b/source/lib/SihnonFramework/Session.class.php @@ -35,7 +35,7 @@ class SihnonFramework_Session { $this->dirty = true; } - public function get($name, $value, $default = null) { + public function get($name, $default = null) { if ( ! $this->exists($name)) { return $default; }