Commit 50f5c3c3add5f1cd377550a24db7ebd37c610fb2

Authored by Conrad Vermeulen
1 parent a9c10422

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@6239 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/authentication/interceptorinstances.inc.php
... ... @@ -24,20 +24,20 @@
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 KTInterceptorInstance extends KTEntity {
31 31 var $sName;
32 32 var $sInterceptorNamespace;
33 33 var $sAuthenticationProvider;
34   - var $sConfig = "";
  34 + var $sConfig = '';
35 35  
36 36 var $_aFieldToSelect = array(
37   - "iId" => "id",
38   - "sName" => "name",
39   - "sInterceptorNamespace" => "interceptor_namespace",
40   - "sConfig" => "config",
  37 + 'iId' => 'id',
  38 + 'sName' => 'name',
  39 + 'sInterceptorNamespace' => 'interceptor_namespace',
  40 + 'sConfig' => 'config',
41 41 );
42 42  
43 43 var $_bUsePearError = true;
... ...