Fix return url when dropping post loaded by update_* in non-frio
This commit is contained in:
parent
dc669fa736
commit
509dc29b2d
|
@ -410,6 +410,10 @@ function drop_item($id, $return = '')
|
|||
Item::deleteForUser(['id' => $item['id']], local_user());
|
||||
|
||||
$return_url = hex2bin($return);
|
||||
|
||||
// removes update_* from return_url to ignore Ajax refresh
|
||||
$return_url = str_replace("update_", "", $return_url);
|
||||
|
||||
if (empty($return_url) || strpos($return_url, 'display') !== false) {
|
||||
$a->internalRedirect('network');
|
||||
//NOTREACHED
|
||||
|
|
Loading…
Reference in a new issue