@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix undefined variable on empty Maniphest results pages

Summary: Fixes T2741. If there are no results, `$result_count` is never initialized.

Test Plan: Looked at an empty results page.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T2741

Differential Revision: https://secure.phabricator.com/D5328

+1
+1
src/applications/maniphest/controller/ManiphestTaskListController.php
··· 307 307 '%s'. 308 308 '</h1>', 309 309 $no_tasks)); 310 + $result_count = null; 310 311 } else { 311 312 $pager = new AphrontPagerView(); 312 313 $pager->setURI($request->getRequestURI(), 'offset');