1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-11 07:11:04 +01:00

Fix a PhutilURI issue in Multimeter

Fished this out of the `secure` error logs.
This commit is contained in:
epriestley 2019-02-17 17:39:34 -08:00
parent dbcf41dbea
commit adab702403

View file

@ -300,9 +300,10 @@ final class MultimeterSampleController extends MultimeterController {
$group = implode('.', $group);
if (!strlen($group)) {
$group = null;
$uri->removeQueryParam('group');
} else {
$uri->replaceQueryParam('group', $group);
}
$uri->replaceQueryParam('group', $group);
if ($wipe) {
foreach ($this->getColumnMap() as $key => $column) {