[geeklog-cvs] Auth_Enterprise/Client AEBaseClientProvider.class.php,1.1.1.1,1.2

tony at iowaoutdoors.org tony at iowaoutdoors.org
Thu Jun 17 17:02:22 EDT 2004


Update of /var/cvs/Auth_Enterprise/Client
In directory www:/tmp/cvs-serv25988

Modified Files:
	AEBaseClientProvider.class.php 
Log Message:
made the constructor parameter consistent with the rest of the descendants.

Index: AEBaseClientProvider.class.php
===================================================================
RCS file: /var/cvs/Auth_Enterprise/Client/AEBaseClientProvider.class.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** AEBaseClientProvider.class.php	15 Jun 2004 15:19:27 -0000	1.1.1.1
--- AEBaseClientProvider.class.php	17 Jun 2004 21:02:19 -0000	1.2
***************
*** 33,42 ****
      * @var string
      */
!     private $appId = null;
      
      /**
      * Constructor
      *
!     * Sets up client properties so that calls to Auth_Enterprise will work
      *
      * @author Tony Bibbs <tony.bibbs at iowa.gov>
--- 33,43 ----
      * @var string
      */
!     protected $appId = null;
      
      /**
      * Constructor
      *
!     * Sets up client properties so that calls to Auth_Enterprise will work. Note, this class takes
!     * an array of options but at this abstract of a level all we care about is $options['appId']
      *
      * @author Tony Bibbs <tony.bibbs at iowa.gov>
***************
*** 45,51 ****
      *
      */
!     function __construct($appId)
      {
!         $this->appId = $appId;
      }
  }
--- 46,52 ----
      *
      */
!     function __construct($options)
      {
!         $this->appId = $options['appId'];
      }
  }




More information about the geeklog-cvs mailing list