Remove "f=&" nonsense from network module

- Fixes wrong redirect when using the sidebar filters
This commit is contained in:
Hypolite Petovan 2019-05-27 17:19:38 -04:00
parent cd05d15b04
commit ed768c71ee
8 changed files with 28 additions and 30 deletions

View file

@ -46,6 +46,6 @@ class RemoveTag extends BaseModule
info('Item was not deleted');
}
$app->internalRedirect('/network?f=&file=' . rawurlencode($term));
$app->internalRedirect('network?file=' . rawurlencode($term));
}
}