Skip to content
Snippets Groups Projects
Commit 6558c0f1 authored by Raphaël Doursenaud's avatar Raphaël Doursenaud
Browse files

Removed a bunch of unused variables

parent 3fdc4ca5
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ class DoliDBMssql extends DoliDB
*/
function __construct($type, $host, $user, $pass, $name='', $port=0)
{
global $conf,$langs;
global $langs;
$this->database_user=$user;
$this->database_host=$host;
......
......@@ -54,7 +54,7 @@ class DoliDBSqlite extends DoliDB
*/
function __construct($type, $host, $user, $pass, $name='', $port=0)
{
global $conf,$langs;
global $conf;
// Note that having "static" property for "$forcecharset" and "$forcecollate" will make error here in strict mode, so they are not static
if (! empty($conf->db->character_set)) $this->forcecharset=$conf->db->character_set;
......@@ -303,7 +303,7 @@ class DoliDBSqlite extends DoliDB
*/
function connect($host, $login, $passwd, $name, $port=0)
{
global $conf,$main_data_dir;
global $main_data_dir;
dol_syslog(get_class($this)."::connect name=".$name,LOG_DEBUG);
......@@ -379,9 +379,7 @@ class DoliDBSqlite extends DoliDB
*/
function query($query,$usesavepoint=0,$type='auto')
{
$errmsg='';
$ret='';
$ret=null;
$query = trim($query);
$this->error = 0;
......
......@@ -323,7 +323,7 @@ class DoliDBSqlite3 extends DoliDB
*/
function connect($host, $login, $passwd, $name, $port=0)
{
global $conf,$main_data_dir;
global $main_data_dir;
dol_syslog(get_class($this)."::connect name=".$name,LOG_DEBUG);
......@@ -401,8 +401,6 @@ class DoliDBSqlite3 extends DoliDB
*/
function query($query,$usesavepoint=0,$type='auto')
{
$errmsg='';
$ret=null;
$query = trim($query);
$this->error = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment