From b879208866adc61e4ecbcc4c8c498d650755a392 Mon Sep 17 00:00:00 2001 From: ywarnier Date: Sun, 9 Jan 2011 20:44:51 -0500 Subject: [PATCH] Fixed parse error (weird this could be there unnoticed) --- main/auth/sso/sso.class.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main/auth/sso/sso.class.php b/main/auth/sso/sso.class.php index 49ced92256..451046135a 100644 --- a/main/auth/sso/sso.class.php +++ b/main/auth/sso/sso.class.php @@ -10,12 +10,12 @@ /** * The SSO class allows for management or remote Single Sign On resources */ -public class sso { - public var $protocol; // 'http://', - public var $domain; // 'localhost/project/drupal5', - public var $auth_uri; // '/?q=user', - public var $deauth_uri; // '/?q=logout', - public var $referer; // http://my.chamilo.com/main/auth/profile.php +class sso { + public $protocol; // 'http://', + public $domain; // 'localhost/project/drupal5', + public $auth_uri; // '/?q=user', + public $deauth_uri; // '/?q=logout', + public $referer; // http://my.chamilo.com/main/auth/profile.php /** * Instanciates the object, initializing all relevant URL strings