// Fixed misplaced comma

This commit is contained in:
Damien Metzger
2013-07-16 10:27:39 +02:00
parent 672f2d9dd1
commit 3d283000a0
2 changed files with 4 additions and 4 deletions

View File

@@ -2204,9 +2204,9 @@ class AdminControllerCore extends Controller
}
else
$this->_listsql .= ($this->lang ? 'b.*,' : '').' a.*';
$this->_listsql .= '
'.(isset($this->_select) ? ', '.$this->_select : '').$select_shop.'
'.(isset($this->_select) ? ', '.rtrim($this->_select, ', ') : '').$select_shop.'
FROM `'._DB_PREFIX_.$sql_table.'` a
'.$lang_join.'
'.(isset($this->_join) ? $this->_join.' ' : '').'