minor fix for calculated columns with fullcolumns

This commit is contained in:
Sergey Tsalkov
2013-03-19 11:20:20 -07:00
parent 027e1529ba
commit 6cb757797b
2 changed files with 4 additions and 2 deletions

View File

@@ -616,7 +616,8 @@ class MeekroDB {
if ($full_names) {
$infos = array();
foreach ($result->fetch_fields() as $info) {
$infos[] = $info->table . '.' . $info->name;
if (strlen($info->table)) $infos[] = $info->table . '.' . $info->name;
else $infos[] = $info->name;
}
}