diff --git a/history.php b/history.php index 568a8b6..f7ae927 100644 --- a/history.php +++ b/history.php @@ -73,7 +73,8 @@ if ($bookmark =& $bookmarkservice->getBookmarkByHash($hash)) { $tplVars['hash'] = $hash; $tplVars['popCount'] = 50; $tplVars['sidebar_blocks'] = array('common'); - $tplVars['cat_url'] = createURL('tags', '%2$s'); + //$tplVars['cat_url'] = createURL('tags', '%2$s'); + $tplVars['cat_url'] = createURL('bookmarks', '%1$s/%2$s'); $tplVars['nav_url'] = createURL('history', $hash .'/%3$s'); $templateservice->loadTemplate('bookmarks.tpl', $tplVars); } else { @@ -87,4 +88,4 @@ if ($usecache) { // Cache output if existing copy has expired $cacheservice->End($cachehash); } -?> \ No newline at end of file +?> diff --git a/index.php b/index.php index 7457254..f70f72b 100644 --- a/index.php +++ b/index.php @@ -75,7 +75,7 @@ $tplVars['bookmarkCount'] = $start + 1; $bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, NULL, NULL, NULL, getSortOrder(), NULL, 0, $dtend); $tplVars['total'] = $bookmarks['total']; $tplVars['bookmarks'] =& $bookmarks['bookmarks']; -$tplVars['cat_url'] = createURL('tags', '%2$s'); +$tplVars['cat_url'] = createURL('bookmarks', '%1$s/%2$s'); $tplVars['nav_url'] = createURL('index', '%3$s'); $tplVars['summarizeLinkedTags'] = true; diff --git a/tags.php b/tags.php index 81956fd..e44c592 100644 --- a/tags.php +++ b/tags.php @@ -76,7 +76,7 @@ $tplVars['bookmarkCount'] = $start + 1; $bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, NULL, $cat, NULL, getSortOrder()); $tplVars['total'] = $bookmarks['total']; $tplVars['bookmarks'] =& $bookmarks['bookmarks']; -$tplVars['cat_url'] = createURL('tags', '%2$s'); +$tplVars['cat_url'] = createURL('bookmarks', '%1$s/%2$s'); $tplVars['nav_url'] = createURL('tags', '%2$s%3$s'); $templateservice->loadTemplate('bookmarks.tpl', $tplVars); diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 7837e6c..e4cfe04 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -4,6 +4,9 @@ $bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService'); $cdservice =& ServiceFactory::getServiceInstance('CommonDescriptionService'); $logged_on_userid = $userservice->getCurrentUserId(); +$currentUser = $userservice->getCurrentUser(); +$currentUsername = $currentUser[$userservice->getFieldName('username')]; + $this->includeTemplate($GLOBALS['top_include']); include('search.inc.php'); @@ -54,8 +57,26 @@ window.onload = playerLoad; + + '; + echo T_('Bookmarks from other users for these tags').''; + //echo T_(' for these tags'); + } else if($logged_on_userid>0){ + echo ' - '; + echo ''; + echo T_('Only your bookmarks for these tags').''; + //echo T_(' for these tags'); + } + } + ?>
+ +