Function renamed to better reflect the purpose

This commit is contained in:
Michael 2020-03-05 08:03:05 +00:00
parent 825a7f9f93
commit a55057d974
4 changed files with 4 additions and 4 deletions

View File

@ -5823,7 +5823,7 @@ function api_friendica_activity($type)
$id = $_REQUEST['id'] ?? 0; $id = $_REQUEST['id'] ?? 0;
$res = Item::performLike($id, $verb); $res = Item::performActivity($id, $verb);
if ($res) { if ($res) {
if ($type == "xml") { if ($type == "xml") {

View File

@ -34,7 +34,7 @@ function subthread_content(App $a)
$item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0); $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0);
if (!Item::performLike($item_id, 'follow')) { if (!Item::performActivity($item_id, 'follow')) {
Logger::info('Following item failed', ['item' => $item_id]); Logger::info('Following item failed', ['item' => $item_id]);
throw new HTTPException\BadRequestException(); throw new HTTPException\BadRequestException();
} }

View File

@ -3141,7 +3141,7 @@ class Item
* array $arr * array $arr
* 'post_id' => ID of posted item * 'post_id' => ID of posted item
*/ */
public static function performLike($item_id, $verb) public static function performActivity($item_id, $verb)
{ {
if (!Session::isAuthenticated()) { if (!Session::isAuthenticated()) {
return false; return false;

View File

@ -50,7 +50,7 @@ class Like extends BaseModule
// @TODO: Replace with parameter from router // @TODO: Replace with parameter from router
$itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0); $itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0);
if (!Item::performLike($itemId, $verb)) { if (!Item::performActivity($itemId, $verb)) {
throw new HTTPException\BadRequestException(); throw new HTTPException\BadRequestException();
} }