tab2spaces

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@503 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-11-02 09:41:09 +00:00
parent ff582fe043
commit 064c45d77e

View file

@ -84,18 +84,18 @@ if (POST_TERMS != '') {
$selected = ' selected="selected"'; $selected = ' selected="selected"';
switch ($range) { switch ($range) {
case 'all': case 'all':
$tplVars['select_all'] = $selected; $tplVars['select_all'] = $selected;
$s_user = NULL; $s_user = NULL;
break; break;
case 'watchlist': case 'watchlist':
$tplVars['select_watchlist'] = $selected; $tplVars['select_watchlist'] = $selected;
$s_user = $currentUserId; $s_user = $currentUserId;
$s_watchlist = true; $s_watchlist = true;
break; break;
default: default:
$s_user = $range; $s_user = $range;
break; break;
} }
if (isset($s_user)) { if (isset($s_user)) {
@ -115,22 +115,22 @@ if (POST_TERMS != '') {
$searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId); $searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId);
if($GLOBALS['enableGoogleCustomSearch']) { if($GLOBALS['enableGoogleCustomSearch']) {
$tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ').'<a href="'.createUrl('gsearch/index').'">Google Custom Search page</a>.'; $tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ').'<a href="'.createUrl('gsearch/index').'">Google Custom Search page</a>.';
} }
$tplVars['rsschannels'] = array(); $tplVars['rsschannels'] = array();
$tplVars['page'] = $page; $tplVars['page'] = $page;
$tplVars['start'] = $start; $tplVars['start'] = $start;
$tplVars['popCount'] = 25; $tplVars['popCount'] = 25;
$tplVars['sidebar_blocks'] = array('search', 'recent', 'menu2'); $tplVars['sidebar_blocks'] = array('search', 'recent', 'menu2');
$tplVars['range'] = $range; $tplVars['range'] = $range;
$tplVars['terms'] = $terms; $tplVars['terms'] = $terms;
$tplVars['pagetitle'] = T_('Search Bookmarks'); $tplVars['pagetitle'] = T_('Search Bookmarks');
$tplVars['bookmarkCount'] = $start + 1; $tplVars['bookmarkCount'] = $start + 1;
$tplVars['total'] = $bookmarks['total']; $tplVars['total'] = $bookmarks['total'];
$tplVars['bookmarks'] =& $bookmarks['bookmarks']; $tplVars['bookmarks'] =& $bookmarks['bookmarks'];
$tplVars['cat_url'] = createURL('tags', '%2$s'); $tplVars['cat_url'] = createURL('tags', '%2$s');
$tplVars['nav_url'] = createURL('search', $range .'/'. $terms .'/%3$s'); $tplVars['nav_url'] = createURL('search', $range .'/'. $terms .'/%3$s');
$templateservice->loadTemplate('bookmarks.tpl', $tplVars); $templateservice->loadTemplate('bookmarks.tpl', $tplVars);
} }
?> ?>