From: Hypolite Petovan Date: Sun, 1 Dec 2019 04:15:58 +0000 (-0500) Subject: Update the return value of Item\Ignore to integer X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c3d88aca39a161c5adf30acf34144c4aac575ef1;p=friendica.git Update the return value of Item\Ignore to integer - Array is unnecessary --- diff --git a/src/Module/Item/Ignore.php b/src/Module/Item/Ignore.php index 4590bc8c84..e67f2113cd 100644 --- a/src/Module/Item/Ignore.php +++ b/src/Module/Item/Ignore.php @@ -73,6 +73,6 @@ class Ignore extends BaseModule } // the json doesn't really matter, it will either be 0 or 1 - System::jsonExit([$ignored]); + System::jsonExit($ignored); } }