remove end date condition since it seems unneccessary to me
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@672 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
01c792a789
commit
edfd04698a
1 changed files with 5 additions and 8 deletions
|
@ -67,9 +67,6 @@ if (intval(GET_PAGE) > 1) {
|
|||
$start = 0;
|
||||
}
|
||||
|
||||
$dtend = date('Y-m-d H:i:s', strtotime('tomorrow'));
|
||||
/*$dtstart = date('Y-m-d H:i:s', strtotime($dtend .' -'. $defaultRecentDays .' days'));*/
|
||||
|
||||
$tplVars['page'] = $page;
|
||||
$tplVars['start'] = $start;
|
||||
$tplVars['popCount'] = 30;
|
||||
|
@ -79,7 +76,7 @@ $tplVars['pagetitle'] = T_('Store, share and tag your favourite links');
|
|||
$tplVars['subtitle'] = T_('All Bookmarks');
|
||||
$tplVars['bookmarkCount'] = $start + 1;
|
||||
|
||||
$bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, NULL, NULL, NULL, getSortOrder(), NULL, 0, $dtend);
|
||||
$bookmarks = $bookmarkservice->getBookmarks($start, $perpage, NULL, NULL, NULL, getSortOrder(), NULL, 0, NULL);
|
||||
|
||||
$tplVars['total'] = $bookmarks['total'];
|
||||
$tplVars['bookmarks'] =& $bookmarks['bookmarks'];
|
||||
|
|
Loading…
Reference in a new issue