diff options
| author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-09 10:42:15 +0000 | 
|---|---|---|
| committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-09 10:42:15 +0000 | 
| commit | fbac7319cf413b8cdf5e7cd1ee0d48070b484c8a (patch) | |
| tree | 9f6d385550fceeff5cf4fd9690ddd07f70756ece /templates/top.inc.php | |
| parent | 34d430101169f5fd7dffdce85deeb48906b9bd53 (diff) | |
| download | semanticscuttle-fbac7319cf413b8cdf5e7cd1ee0d48070b484c8a.tar.gz semanticscuttle-fbac7319cf413b8cdf5e7cd1ee0d48070b484c8a.tar.bz2 | |
Interface fix: add » character to page title.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@258 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/top.inc.php')
| -rw-r--r-- | templates/top.inc.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/templates/top.inc.php b/templates/top.inc.php index ec35222..72c5612 100644 --- a/templates/top.inc.php +++ b/templates/top.inc.php @@ -2,7 +2,7 @@  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">  <head> -<title><?php echo filter($GLOBALS['sitename'] . (isset($pagetitle) ? ': ' . $pagetitle : '')); ?></title> +<title><?php echo filter($GLOBALS['sitename'] .(isset($pagetitle) ? ' ยป ' . $pagetitle : '')); ?></title>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <link rel="icon" type="image/png" href="<?php echo ROOT ?>icon.png" />  <link rel="stylesheet" type="text/css" | 
