mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 13:08:18 +01:00
(stable) Fix a PhutilURI issue in Multimeter
Fished this out of the `secure` error logs.
This commit is contained in:
parent
005eb5f9fc
commit
d4f28640eb
1 changed files with 3 additions and 2 deletions
|
@ -300,9 +300,10 @@ final class MultimeterSampleController extends MultimeterController {
|
||||||
|
|
||||||
$group = implode('.', $group);
|
$group = implode('.', $group);
|
||||||
if (!strlen($group)) {
|
if (!strlen($group)) {
|
||||||
$group = null;
|
$uri->removeQueryParam('group');
|
||||||
|
} else {
|
||||||
|
$uri->replaceQueryParam('group', $group);
|
||||||
}
|
}
|
||||||
$uri->replaceQueryParam('group', $group);
|
|
||||||
|
|
||||||
if ($wipe) {
|
if ($wipe) {
|
||||||
foreach ($this->getColumnMap() as $key => $column) {
|
foreach ($this->getColumnMap() as $key => $column) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue