2
0
forked from Wavyzz/dolibarr

Fix: Var can't be static

This commit is contained in:
Laurent Destailleur
2012-04-28 18:04:55 +02:00
parent 9200847eaa
commit 2a19e9d2a1
5 changed files with 13 additions and 12 deletions

View File

@@ -38,9 +38,9 @@ class DoliDBSqlite
//! Database label
static $label='PDO Sqlite';
//! Charset used to force charset when creating database
static $forcecharset='utf8'; // latin1, utf8
var $forcecharset='utf8'; // latin1, utf8. Can't be static as it may be forced with a dynamic value
//! Collate used to force collate when creating database
static $forcecollate='utf8_general_ci'; // latin1_swedish_ci, utf8_general_ci
var $forcecollate='utf8_general_ci'; // latin1_swedish_ci, utf8_general_ci. Can't be static as it may be forced with a dynamic value
//! Version min database
static $versionmin=array(3,0,0);
//! Resultset of last request