switch order of BLOG-TITLE - POST-TITLE in permalinks (now POST - BLOG), making » a « for nicer screen rendition.

This commit is contained in:
real_nowhereman 2009-11-22 14:52:43 +00:00
parent 2b5c9fb20f
commit 9fec523bc4
3 changed files with 3 additions and 3 deletions

View File

@ -284,7 +284,7 @@
$smarty->assign('blogtitle', $fp_config['general']['title']); $smarty->assign('blogtitle', $fp_config['general']['title']);
$smarty->assign('pagetitle', $smarty->assign('pagetitle',
apply_filters('wp_title', "", '»')); apply_filters('wp_title', "", '«'));
$smarty->assign_by_ref('fp_config', $fp_config); $smarty->assign_by_ref('fp_config', $fp_config);

View File

@ -1,7 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>{$flatpress.title|tag:wp_title:'&raquo;'}</title> <title>{$flatpress.title|tag:wp_title:'&laquo;'}</title>
<meta http-equiv="Content-Type" content="text/html; charset={$flatpress.charset}" /> <meta http-equiv="Content-Type" content="text/html; charset={$flatpress.charset}" />
{action hook=wp_head} {action hook=wp_head}
</head> </head>

View File

@ -19,7 +19,7 @@
$q =& $fpdb->getQuery(); $q =& $fpdb->getQuery();
list($id, $e) = @$q->peekEntry(); list($id, $e) = @$q->peekEntry();
if ($e) if ($e)
return "$val {$sep} {$e['subject']}"; return "{$e['subject']} {$sep} $val ";
else return $val; else return $val;
} }