Undo r10948

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3@10949 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2012-07-27 01:33:13 +00:00
parent 462e4ee570
commit dc2bc8395f

View file

@ -1132,13 +1132,13 @@
$table_count = count($tmp_files);
// Check if the table is created
$created_table_count = 0;
for($j=0;$j<$table_count;$j++) {
for($j=0;$j<count($tmp_files);$j++) {
list($table_name) = explode(".",$tmp_files[$j]);
if($oDB->isTableExists($table_name)) $created_table_count ++;
}
// Get information of the module
$info = NULL;
$info = $this->getModuleInfoXml($module_name);
unset($obj);
$info->module = $module_name;
$info->category = $info->category;