mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Fix: Prevent threads from being collapsed in network view
This commit is contained in:
parent
f9d2fedaa3
commit
899e1000af
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue