X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FParseUrl.php;h=6620229cd16c78fcb6114d710d7d413ff70b493c;hb=3bca4fe2a64671d09e08346456cdfa6c12f996e9;hp=e2d75ee8447fd70e2c561a4c5f5a021d26a78541;hpb=6aa1dcfad371f34fea1f8e39b73de2cc3dd05784;p=friendica.git diff --git a/src/Module/ParseUrl.php b/src/Module/ParseUrl.php index e2d75ee844..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'] ?? '')); } } }