X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fignored.php;h=64edf6e151c17d7a6dac97ee727259d016ef6883;hb=6aac84dc8e5f575af15cd2f67e3af045694ebe21;hp=5e8411e376743d630e30a75d8cf27a6e0ad40d3f;hpb=ad20c5504deba9dbb4ea5c5deba598f2c448b344;p=friendica.git diff --git a/mod/ignored.php b/mod/ignored.php index 5e8411e376..64edf6e151 100644 --- a/mod/ignored.php +++ b/mod/ignored.php @@ -1,50 +1,52 @@ argc > 1) { $message_id = intval($a->argv[1]); } - if (! $message_id) { - killme(); - } - $r = q("SELECT `ignored` FROM `thread` WHERE `uid` = %d AND `iid` = %d LIMIT 1", - intval(local_user()), - intval($message_id) - ); - if (! dbm::is_result($r)) { - killme(); + if (empty($message_id)) { + exit(); } - if (! intval($r[0]['ignored'])) { - $ignored = 1; + $thread = Item::selectFirstThreadForUser(local_user(), ['uid', 'ignored'], ['iid' => $message_id]); + if (!DBA::isResult($thread)) { + exit(); } - $r = q("UPDATE `thread` SET `ignored` = %d WHERE `uid` = %d and `iid` = %d", - intval($ignored), - intval(local_user()), - intval($message_id) - ); + // Numeric values are needed for the json output further below + $ignored = ($thread['ignored'] ? 0 : 1); + + if ($thread['uid'] != 0) { + DBA::update('thread', ['ignored' => $ignored], ['iid' => $message_id]); + } else { + DBA::update('user-item', ['ignored' => $ignored], ['iid' => $message_id, 'uid' => local_user()], true); + } // See if we've been passed a return path to redirect to - $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : ''); + $return_path = defaults($_REQUEST, 'return', ''); if ($return_path) { $rand = '_=' . time(); - if(strpos($return_path, '?')) $rand = "&$rand"; - else $rand = "?$rand"; + if (strpos($return_path, '?')) { + $rand = "&$rand"; + } else { + $rand = "?$rand"; + } - goaway(App::get_baseurl() . "/" . $return_path . $rand); + $a->internalRedirect($return_path . $rand); } // the json doesn't really matter, it will either be 0 or 1 echo json_encode($ignored); - killme(); + exit(); }