// Fixed customer tab

This commit is contained in:
Damien Metzger
2013-10-03 09:52:25 +02:00
parent 90b203fde3
commit e82f0feacf
2 changed files with 12 additions and 20 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ class AdminControllerCore extends Controller
foreach ($val as $v)
if (is_string($v) && !empty($v))
$filter_value .= ' - '.htmlspecialchars($v, ENT_QUOTES, 'UTF-8');
$filter_value = ltrim($tmp, ' -');
$filter_value = ltrim($filter_value, ' -');
if (!empty($filter_value))
$filters[] = sprintf($this->l('%s: %s'), $t['title'], $filter_value);
}