@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 a PhutilURI issue in Multimeter

Fished this out of the `secure` error logs.

+3 -2
+3 -2
src/applications/multimeter/controller/MultimeterSampleController.php
··· 300 300 301 301 $group = implode('.', $group); 302 302 if (!strlen($group)) { 303 - $group = null; 303 + $uri->removeQueryParam('group'); 304 + } else { 305 + $uri->replaceQueryParam('group', $group); 304 306 } 305 - $uri->replaceQueryParam('group', $group); 306 307 307 308 if ($wipe) { 308 309 foreach ($this->getColumnMap() as $key => $column) {