Browse Source

FIX : fetchAll method in skeleton.class.php

Florian HENRY 10 years ago
parent
commit
938be9bae0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dev/skeletons/skeleton_class.class.php

+ 1 - 1
dev/skeletons/skeleton_class.class.php

@@ -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();