[Cs-content-commits] SF.net SVN: cs-content:[422] trunk/1.0/cs_sessionDB.class.php
PHP Templating & Includes System
Brought to you by:
crazedsanity
|
From: <cra...@us...> - 2009-08-06 20:08:12
|
Revision: 422
http://cs-content.svn.sourceforge.net/cs-content/?rev=422&view=rev
Author: crazedsanity
Date: 2009-08-06 20:08:05 +0000 (Thu, 06 Aug 2009)
Log Message:
-----------
Fix accidental code removal from last commit.
/cs_sessionDB.class.php:
* load_table():
-- re-added setting for $filename (otherwise it would always fail).
Modified Paths:
--------------
trunk/1.0/cs_sessionDB.class.php
Property Changed:
----------------
trunk/1.0/cs_sessionDB.class.php
Modified: trunk/1.0/cs_sessionDB.class.php
===================================================================
--- trunk/1.0/cs_sessionDB.class.php 2009-08-06 19:38:47 UTC (rev 421)
+++ trunk/1.0/cs_sessionDB.class.php 2009-08-06 20:08:05 UTC (rev 422)
@@ -93,7 +93,7 @@
//-------------------------------------------------------------------------
private function load_table() {
- $this->logger->append_to_file(__METHOD__ .": starting... ". microtime(true));
+ $filename = dirname(__FILE__) .'/schema/db_session_schema.'. $this->db->get_dbtype() .'.sql';
if(file_exists($filename)) {
try {
$this->db->run_update(file_get_contents($filename),true);
Property changes on: trunk/1.0/cs_sessionDB.class.php
___________________________________________________________________
Deleted: svn:mergeinfo
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|