diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-09-22 06:58:18 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-09-22 06:58:18 +0000 |
commit | 33c3ff7e12130d088674cf74329978ff8ca09809 (patch) | |
tree | 8703e86abbaf70873bd9735eb60176e9f3f02fd8 | |
parent | 50205d36e0fb5b2f08cf9f3fd76d3694ce3acf8d (diff) | |
download | semanticscuttle-33c3ff7e12130d088674cf74329978ff8ca09809.tar.gz semanticscuttle-33c3ff7e12130d088674cf74329978ff8ca09809.tar.bz2 |
use proper html entities - ; was missing
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@373 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | templates/sidebar.block.watchlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/sidebar.block.watchlist.php b/templates/sidebar.block.watchlist.php index b759d70..8f4984e 100644 --- a/templates/sidebar.block.watchlist.php +++ b/templates/sidebar.block.watchlist.php @@ -27,7 +27,7 @@ foreach($watching as $watchuser) { <?php endif; ?> -<h2><?php echo ' &rarr '. T_('Watching'); ?></h2> +<h2><?php echo ' → '. T_('Watching'); ?></h2> <div id="watching"> <ul> <?php if($userservice->isLoggedOn() && $currentUser->getUsername() == $user): ?> @@ -49,7 +49,7 @@ foreach($watching as $watchuser) { </ul> </div> -<h2><?php echo ' &larr '. T_('Watched By'); ?></h2> +<h2><?php echo ' ← '. T_('Watched By'); ?></h2> <div id="watching"> <ul> <?php foreach($watchedBy as $watchuser): ?> |