X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FParseUrl.php;h=6620229cd16c78fcb6114d710d7d413ff70b493c;hb=dd534919d7e3af010bbc2477e3d0e89a47dd0872;hp=8353cdf6d6713a9cb2bff393b8fcc98f36d7fcf0;hpb=2f3f41ed9cdb4229d78bdf2f91b0617403a8dd62;p=friendica.git diff --git a/src/Module/ParseUrl.php b/src/Module/ParseUrl.php index 8353cdf6d6..6620229cd1 100644 --- a/src/Module/ParseUrl.php +++ b/src/Module/ParseUrl.php @@ -1,6 +1,6 @@ jsonExit($arr['text']); } else { - System::httpExit($arr['text']); + $this->httpExit($arr['text']); } } @@ -133,9 +133,9 @@ class ParseUrl extends BaseModule $ret['success'] = true; } - System::jsonExit($ret); + $this->jsonExit($ret); } else { - System::httpExit(BBCode::embedURL($url, empty($_GET['noAttachment']), $title, $description, $_GET['tags'] ?? '')); + $this->httpExit(BBCode::embedURL($url, empty($_GET['noAttachment']), $title, $description, $_GET['tags'] ?? '')); } } }