From 9fec523bc4512b4bcacd6d9afed9bc1b72959dcc Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Sun, 22 Nov 2009 14:52:43 +0000 Subject: [PATCH] switch order of BLOG-TITLE - POST-TITLE in permalinks (now POST - BLOG), making » a « for nicer screen rendition. --- fp-includes/core/core.theme.php | 2 +- fp-interface/themes/leggero/header.tpl | 2 +- index.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fp-includes/core/core.theme.php b/fp-includes/core/core.theme.php index 97d0424..0eaf767 100644 --- a/fp-includes/core/core.theme.php +++ b/fp-includes/core/core.theme.php @@ -284,7 +284,7 @@ $smarty->assign('blogtitle', $fp_config['general']['title']); $smarty->assign('pagetitle', - apply_filters('wp_title', "", '»')); + apply_filters('wp_title', "", '«')); $smarty->assign_by_ref('fp_config', $fp_config); diff --git a/fp-interface/themes/leggero/header.tpl b/fp-interface/themes/leggero/header.tpl index 52f4fa6..8bfded8 100755 --- a/fp-interface/themes/leggero/header.tpl +++ b/fp-interface/themes/leggero/header.tpl @@ -1,7 +1,7 @@ - {$flatpress.title|tag:wp_title:'»'} + {$flatpress.title|tag:wp_title:'«'} {action hook=wp_head} diff --git a/index.php b/index.php index 09daddd..d515646 100644 --- a/index.php +++ b/index.php @@ -19,7 +19,7 @@ $q =& $fpdb->getQuery(); list($id, $e) = @$q->peekEntry(); if ($e) - return "$val {$sep} {$e['subject']}"; + return "{$e['subject']} {$sep} $val "; else return $val; }