- Implement request #2878169: Voting system
- Fix bug #2881886: PHP notice when viewing tags
- Configuration option to disable registration
+- Implement request #2874049: "Feeling lucky" button
+ just add "?lucky=1" as parameter to search page
0.94 - 2009-10-02
So I'd define "freddy" as short url name in the bookmark, and anyone could
access it e.g. via our-bookmarks.com/s/freddy and get redirected to the
real url. Useful to get permanent URLs to moving targets.
-#2874049 - feeling lucky button
- redirect to first search result
}
}
-$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 ')