From ed1636cb5164aa6b14c3dd5f95ad3fea79939a4a Mon Sep 17 00:00:00 2001 From: cweiske Date: Mon, 2 Nov 2009 09:42:18 +0000 Subject: Implement request #2874049: "Feeling lucky" button git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@506 b3834d28-1941-0410-a4f8-b48e95affb8f --- www/search.php | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'www') diff --git a/www/search.php b/www/search.php index c957b80..11c382c 100644 --- a/www/search.php +++ b/www/search.php @@ -113,10 +113,23 @@ if (is_null($terms)) { } } -$bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, $s_user, NULL, $terms, getSortOrder(), $s_watchlist, $s_start, $s_end); +$bookmarks =& $bookmarkservice->getBookmarks( + $start, $perpage, $s_user, NULL, $terms, getSortOrder(), + $s_watchlist, $s_start, $s_end +); // Save search -$searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId); +$searchhistoryservice->addSearch( + $terms, $range, $bookmarks['total'], $currentUserId +); + +if (isset($_GET['lucky']) && $_GET['lucky'] + && isset($bookmarks['bookmarks'][0]) +) { + $url = $bookmarks['bookmarks'][0]['bAddress']; + header('Location: ' . $url); + exit(); +} if ($GLOBALS['enableGoogleCustomSearch']) { $tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ') -- cgit v1.2.3