From 73488d5ee97c73c45ab963424ac855e626af19e7 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Sat, 8 Nov 2008 05:11:58 +0000 Subject: Remove inappropriate comments --- modules/auth/libraries/Auth.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/modules/auth/libraries/Auth.php b/modules/auth/libraries/Auth.php index 9bc59ec7..17cce3eb 100644 --- a/modules/auth/libraries/Auth.php +++ b/modules/auth/libraries/Auth.php @@ -18,12 +18,7 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ /** - * Implement the Authentication. - * - * This code was heavily influenced by code from: - * - http://code.google.com/p/kohana-mptt/ - * - http://code.google.com/p/kohana-mptt/wiki/Documentation - * - http://code.google.com/p/s7ncms/source/browse/trunk/modules/s7ncms/libraries/ORM_MPTT.php + * Implement the Authentication interface. * * It was extended to allow configurable drivers */ @@ -39,12 +34,12 @@ class Auth_Core implements Auth_Driver { /** * Singleton instance of Session. */ - public static function instance($config = array()) { + public static function instance($config = array()) { if (self::$instance == NULL) { // Create a new instance self::$instance = new Auth($config); } - + return self::$instance; } -- cgit v1.2.3