1
1
Fork 0

Revert "Update function calls"

This reverts commit 748fb8b946.
This commit is contained in:
Adam Magness 2018-11-05 07:40:18 -05:00
commit 9e51be7554
16 changed files with 110 additions and 114 deletions

View file

@ -33,7 +33,6 @@ use Friendica\Protocol\ActivityPub;
use Friendica\Util\Crypto;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
use Friendica\Util\Strings;
use Friendica\Util\XML;
require_once 'include/enotify.php';
@ -257,7 +256,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
$xml = XML::parseString($res);
$status = (int) $xml->status;
$message = Strings::unescape($xml->message); // human readable text of what may have gone wrong.
$message = XML::unescape($xml->message); // human readable text of what may have gone wrong.
switch ($status) {
case 0:
info(L10n::t("Confirmation completed successfully.") . EOL);