Merge pull request #5591 from annando/fix-collapse

Fix: Prevent threads from being collapsed in network view
This commit is contained in:
Tobias Diekershoff 2018-08-09 07:51:45 +02:00 committed by GitHub
commit 57f207618d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ require_once "mod/network.php";
function update_network_content(App $a)
{
if (empty($_GET['p']) || empty($_GET['item'])) {
if (!isset($_GET['p']) || !isset($_GET['item'])) {
killme();
}