Fix return url when dropping post loaded by update_* in non-frio

Этот коммит содержится в:
Jonny Tischbein 2018-11-06 21:37:10 +01:00
родитель dc669fa736
Коммит 509dc29b2d
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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