From 8d1a50f0e73a1192086b2b541de47afaab0947b2 Mon Sep 17 00:00:00 2001 From: Conrad Vermeulen Date: Tue, 13 Feb 2007 12:30:17 +0000 Subject: [PATCH] KTS-1687 "Double quote to single quote conversion" Fixed. Reviewed by: Kevin Fourie --- lib/authentication/authenticationsource.inc.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/authentication/authenticationsource.inc.php b/lib/authentication/authenticationsource.inc.php index 1b07782..26a02ad 100644 --- a/lib/authentication/authenticationsource.inc.php +++ b/lib/authentication/authenticationsource.inc.php @@ -24,25 +24,25 @@ * */ -require_once(KT_LIB_DIR . "/users/User.inc"); -require_once(KT_LIB_DIR . "/ktentity.inc"); +require_once(KT_LIB_DIR . '/users/User.inc'); +require_once(KT_LIB_DIR . '/ktentity.inc'); class KTAuthenticationSource extends KTEntity { var $sName; var $sNamespace; var $sAuthenticationProvider; - var $sConfig = ""; + var $sConfig = ''; var $bIsUserSource = false; var $bIsGroupSource = false; var $_aFieldToSelect = array( - "iId" => "id", - "sName" => "name", - "sNamespace" => "namespace", - "sAuthenticationProvider" => "authentication_provider", - "sConfig" => "config", - "bIsUserSource" => "is_user_source", - "bIsGroupSource" => "is_group_source", + 'iId' => 'id', + 'sName' => 'name', + 'sNamespace' => 'namespace', + 'sAuthenticationProvider' => 'authentication_provider', + 'sConfig' => 'config', + 'bIsUserSource' => 'is_user_source', + 'bIsGroupSource' => 'is_group_source', ); var $_bUsePearError = true; -- libgit2 0.21.4