[Openupload-svn-update] SF.net SVN: openupload:[329] branches/v0.4/www/setup.inc.php
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2009-07-03 17:31:36
|
Revision: 329
http://openupload.svn.sourceforge.net/openupload/?rev=329&view=rev
Author: tsdogs
Date: 2009-07-03 17:31:29 +0000 (Fri, 03 Jul 2009)
Log Message:
-----------
paleative fix for mysql not accepting "" as value for a date. (must test on other dbs)
Modified Paths:
--------------
branches/v0.4/www/setup.inc.php
Modified: branches/v0.4/www/setup.inc.php
===================================================================
--- branches/v0.4/www/setup.inc.php 2009-06-16 17:02:03 UTC (rev 328)
+++ branches/v0.4/www/setup.inc.php 2009-07-03 17:31:29 UTC (rev 329)
@@ -267,7 +267,7 @@
),
'users' => array (
array ( 'id' => 1, 'login' => '%1', 'password' => '%2', 'name' => 'Administrator', 'group_name' => '%3', 'email' => '%6',
- 'lang' => 'en', 'reg_date' => '', 'regid' => '', 'active' => 1 ),
+ 'lang' => 'en', 'reg_date' => '2009-01-01', 'regid' => '', 'active' => 1 ),
),
'plugin_acl' => array (
array ( 'id' => '1', 'group_name' => '%3', 'plugin' => 'password', 'access' => 'enable'),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|