mirror of
https://github.com/friendica/friendica
synced 2025-04-26 09:10:15 +00:00
Move System::httpExit to BaseModule->httpExit
- This will ensure headers set in BaseModule->run will be carried in httpExit scenarios - Deprecate httpExit() method in Core\System
This commit is contained in:
parent
94e3dde2e3
commit
da1416c07f
24 changed files with 58 additions and 32 deletions
|
@ -102,7 +102,7 @@ class ParseUrl extends BaseModule
|
|||
if ($format == 'json') {
|
||||
System::jsonExit($arr['text']);
|
||||
} else {
|
||||
System::httpExit($arr['text']);
|
||||
$this->httpExit($arr['text']);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -135,7 +135,7 @@ class ParseUrl extends BaseModule
|
|||
|
||||
System::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'] ?? ''));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue