Page MenuHomeIn-Portal Phabricator

D14.id69.diff
No OneTemporary

File Metadata

Created
Fri, Feb 7, 7:19 PM

D14.id69.diff

Index: branches/5.2.x/core/kernel/db/dblist.php
===================================================================
--- branches/5.2.x/core/kernel/db/dblist.php
+++ branches/5.2.x/core/kernel/db/dblist.php
@@ -517,6 +517,11 @@
$this->SetPage(1);
$this->Query($force);
}
+ else if ( $this->Application->HttpQuery->refererIsOurSite() ) {
+ // no records & page > 1, try to reset to last page
+ $this->SetPage($this->GetTotalPages());
+ $this->Query($force);
+ }
else {
// no records & page > 1, show 404 page
trigger_error('Unknown page <strong>' . $this->Page . '</strong> in <strong>' . $this->getPrefixSpecial() . '</strong> list, leading to "404 Not Found"', E_USER_NOTICE);

Event Timeline