[CS-XMLDatastore-commits] SF.net SVN: cs-xmldatastore:[7] trunk/0.1/cs_xmlDataStore.class.php
Status: Alpha
Brought to you by:
crazedsanity
From: <cs-...@li...> - 2009-09-10 17:36:31
|
Revision: 7 http://cs-xmldatastore.svn.sourceforge.net/cs-xmldatastore/?rev=7&view=rev Author: crazedsanity Date: 2009-09-10 17:36:03 +0000 (Thu, 10 Sep 2009) Log Message: ----------- Create cs_authToken{} object with internal var for it. Modified Paths: -------------- trunk/0.1/cs_xmlDataStore.class.php Modified: trunk/0.1/cs_xmlDataStore.class.php =================================================================== --- trunk/0.1/cs_xmlDataStore.class.php 2009-09-09 20:47:04 UTC (rev 6) +++ trunk/0.1/cs_xmlDataStore.class.php 2009-09-10 17:36:03 UTC (rev 7) @@ -16,6 +16,7 @@ public $db; protected $reader; protected $writer; + protected $authTokenObj; //------------------------------------------------------------------------- @@ -32,6 +33,8 @@ $this->db = new cs_phpDB(constant(__CLASS__ .'-DBTYPE')); $this->db->connect($params); + + $this->authTokenObj = new cs_authToken($this->db); } else { throw new exception(__METHOD__ .": missing DBTYPE constant (". __CLASS__ .'_DBTYPE' .")"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |