From d2bb0bedd39033f2237e1bcca5093505ff945c52 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Tue, 9 Nov 2010 13:53:35 -0500 Subject: [PATCH] Put the unique part of the page title first - better for SEO and browser tab display --- chora/templates/common-header.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chora/templates/common-header.inc b/chora/templates/common-header.inc index 24995b7a3..acb737ce5 100644 --- a/chora/templates/common-header.inc +++ b/chora/templates/common-header.inc @@ -10,7 +10,7 @@ echo !empty($language) ? '' : '< $page_title = $GLOBALS['registry']->get('name'); if (!empty($title)) { - $page_title .= ' :: ' . $title; + $page_title = $title . ' - ' . $page_title; } Horde::outputMetaTags(); -- 2.11.0