From 6c859814069e58e3b314e459879c2fb8b8463cb4 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Sat, 9 Oct 2010 12:53:45 +0200 Subject: make edit profile page valid --- data/templates/editprofile.tpl.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'data/templates/editprofile.tpl.php') diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index b55d250..887dce3 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -3,9 +3,7 @@ $this->includeTemplate($GLOBALS['top_include']); ?>
- - - +

-- cgit v1.2.3 From a04938f5598b47314bff9f9c49710cd08aa28418 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 2 Nov 2010 19:07:59 +0100 Subject: get rid of arrow entities --- data/templates/bookmarks.tpl.php | 12 ++++++------ data/templates/editprofile.tpl.php | 2 +- data/templates/sidebar.block.menu.php | 6 +++--- data/templates/sidebar.block.recent.php | 2 +- data/templates/sidebar.block.users.php | 2 +- data/templates/sidebar.block.watchlist.php | 6 +++--- data/templates/tagrename.tpl.php | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) (limited to 'data/templates/editprofile.tpl.php') diff --git a/data/templates/bookmarks.tpl.php b/data/templates/bookmarks.tpl.php index db560f2..34beb39 100644 --- a/data/templates/bookmarks.tpl.php +++ b/data/templates/bookmarks.tpl.php @@ -121,33 +121,33 @@ $votingSort = 'voting_desc'; switch(getSortOrder()) { case 'date_asc': - $dateArrow = ' ↑'; + $dateArrow = ' ↑'; $dateSort = 'date_desc'; break; case 'title_asc': - $titleArrow = ' ↑'; + $titleArrow = ' ↑'; $titleSort = 'title_desc'; break; case 'title_desc': - $titleArrow = ' ↓'; + $titleArrow = ' ↓'; $titleSort = 'title_asc'; break; case 'voting_asc': - $votingArrow = ' ↑'; + $votingArrow = ' ↑'; $votingSort = 'voting_desc'; break; case 'voting_desc': - $votingArrow = ' ↓'; + $votingArrow = ' ↓'; $votingSort = 'voting_asc'; break; case 'date_desc': default: - $dateArrow = ' ↓'; + $dateArrow = ' ↓'; $dateSort = 'date_asc'; break; } diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index 887dce3..518afbe 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -26,7 +26,7 @@ $this->includeTemplate($GLOBALS['top_include']); - ← + ← diff --git a/data/templates/sidebar.block.menu.php b/data/templates/sidebar.block.menu.php index ee82997..94a9fa2 100644 --- a/data/templates/sidebar.block.menu.php +++ b/data/templates/sidebar.block.menu.php @@ -65,13 +65,13 @@ if (sizeof($menuTags) > 0 || ($userid != 0 && $userid === $logged_on_userid)) { getUser($userid); ?> 0): ?> -

+

-

+

-

+

diff --git a/data/templates/sidebar.block.recent.php b/data/templates/sidebar.block.recent.php index e34f820..1ffeb4d 100644 --- a/data/templates/sidebar.block.recent.php +++ b/data/templates/sidebar.block.recent.php @@ -31,7 +31,7 @@ if ($recentTags && count($recentTags) > 0) { } echo $contents ."

\n"; ?> -

+

-

+

0):?> -

+

    @@ -27,7 +27,7 @@ foreach($watching as $watchuser) { -

    +

      isLoggedOn() && $currentUser->getUsername() == $user): ?> @@ -49,7 +49,7 @@ foreach($watching as $watchuser) {
    -

    +

      diff --git a/data/templates/tagrename.tpl.php b/data/templates/tagrename.tpl.php index ea8b516..894b964 100644 --- a/data/templates/tagrename.tpl.php +++ b/data/templates/tagrename.tpl.php @@ -11,12 +11,12 @@ window.onload = function() { - ← + ← - ← + ← -- cgit v1.2.3 From 3e9e2154a6ec7e4a1ab34b16f9e7ab9ea5c7f109 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 15 Mar 2011 07:59:03 +0100 Subject: Fix bug #3187177: Wrong URL / Export XML Bookmarks --- data/templates/editprofile.tpl.php | 2 +- doc/ChangeLog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'data/templates/editprofile.tpl.php') diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php index b55d250..232b1d3 100644 --- a/data/templates/editprofile.tpl.php +++ b/data/templates/editprofile.tpl.php @@ -58,7 +58,7 @@ $this->includeTemplate($GLOBALS['top_include']); / - / + / diff --git a/doc/ChangeLog b/doc/ChangeLog index acfce25..6144a81 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -8,6 +8,7 @@ ChangeLog for SemantiScuttle - Implement patch #3059829: update FR_CA translation - Update php-gettext library to 1.0.10 - api/posts/add respects the "replace" parameter now +- Fix bug #3187177: Wrong URL / Export XML Bookmarks 0.97.2 - 2011-02-17 -- cgit v1.2.3