From 2a536d2bbbb638d1a9333221f13df653ee2bc97e Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 22 Feb 2013 21:32:19 -0800 Subject: [PATCH] SEP = generic separator support added. Defined in admin theme. --- e107_handlers/admin_ui.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/admin_ui.php b/e107_handlers/admin_ui.php index 63d2f7f4c..dc1c706c0 100644 --- a/e107_handlers/admin_ui.php +++ b/e107_handlers/admin_ui.php @@ -687,7 +687,7 @@ class e_admin_response return ($glue ? $content : implode($this->_title_separator, $content)); } - $glue = ' '; // admin-ui used only by bootstrap. + $glue = deftrue('SEP',' - '); // Defined by admin theme. // admin-ui used only by bootstrap. return $head. implode($glue, $content).$foot; }