From e211bc588b23e6a4cd5c433e8799d537c6648b56 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 12 Oct 2006 05:14:36 +0000 Subject: [PATCH] For cookieexp use the right method names for get/set --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 0aefea5..26a0d92 100644 --- a/functions.php +++ b/functions.php @@ -153,7 +153,7 @@ class Functions * * @param integer Cookie expiration time */ - function setCookiePath($exp) + function setCookieExpiration($exp) { $this->cookieexp = $exp; } @@ -166,7 +166,7 @@ class Functions * * @return integer The cookie expiration time */ - function getCookiePath() + function getCookieExpiration() { return $this->cookieexp; } -- 2.22.5