Commit c67341ed23f62fa2cbb4eb40b522e77d973ffca6

Authored by conradverm
1 parent 5b09065d

KTS-1687

"Double quote to single quote conversion"
Fixed.
Reviewed by: Kevin Fourie

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6232 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/authentication/authenticationsource.inc.php
... ... @@ -24,25 +24,25 @@
24 24 *
25 25 */
26 26  
27   -require_once(KT_LIB_DIR . "/users/User.inc");
28   -require_once(KT_LIB_DIR . "/ktentity.inc");
  27 +require_once(KT_LIB_DIR . '/users/User.inc');
  28 +require_once(KT_LIB_DIR . '/ktentity.inc');
29 29  
30 30 class KTAuthenticationSource extends KTEntity {
31 31 var $sName;
32 32 var $sNamespace;
33 33 var $sAuthenticationProvider;
34   - var $sConfig = "";
  34 + var $sConfig = '';
35 35 var $bIsUserSource = false;
36 36 var $bIsGroupSource = false;
37 37  
38 38 var $_aFieldToSelect = array(
39   - "iId" => "id",
40   - "sName" => "name",
41   - "sNamespace" => "namespace",
42   - "sAuthenticationProvider" => "authentication_provider",
43   - "sConfig" => "config",
44   - "bIsUserSource" => "is_user_source",
45   - "bIsGroupSource" => "is_group_source",
  39 + 'iId' => 'id',
  40 + 'sName' => 'name',
  41 + 'sNamespace' => 'namespace',
  42 + 'sAuthenticationProvider' => 'authentication_provider',
  43 + 'sConfig' => 'config',
  44 + 'bIsUserSource' => 'is_user_source',
  45 + 'bIsGroupSource' => 'is_group_source',
46 46 );
47 47  
48 48 var $_bUsePearError = true;
... ...