2
0
forked from Wavyzz/dolibarr

FIX : fetchAll method in skeleton.class.php

This commit is contained in:
Florian HENRY
2015-07-28 11:38:01 +02:00
parent ab3e1631f4
commit 938be9bae0

View File

@@ -234,7 +234,7 @@ class Skeleton_Class extends CommonObject
$sql .= ' t.field1,';
$sql .= ' t.field2';
//...
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'mytable as t';
$sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t';
// Manage filter
$sqlwhere = array();