mirror of
https://github.com/friendica/friendica
synced 2025-04-19 08:30:11 +00:00
Completely removed argc/argv
This commit is contained in:
parent
540ddb9265
commit
df558d4056
18 changed files with 70 additions and 114 deletions
|
@ -37,12 +37,11 @@ class Attach extends BaseModule
|
|||
public static function rawContent(array $parameters = [])
|
||||
{
|
||||
$a = DI::app();
|
||||
if ($a->argc != 2) {
|
||||
if (empty($parameters['item'])) {
|
||||
throw new \Friendica\Network\HTTPException\BadRequestException();
|
||||
}
|
||||
|
||||
// @TODO: Replace with parameter from router
|
||||
$item_id = intval($a->argv[1]);
|
||||
$item_id = intval($parameters['item']);
|
||||
|
||||
// Check for existence
|
||||
$item = MAttach::exists(['id' => $item_id]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue