- here `Logger::level()` is okay to use
- added more logging in wall_upload.php
- formatted array and put all $array['foo'] = $foo; into a single statement
- <include|require[_once]> are all no functions, but keywords
This commit is contained in:
Roland Häder 2022-09-25 18:43:00 +02:00
parent 71e82bc861
commit ceffd0ef6c
No known key found for this signature in database
GPG key ID: C82EDE5DDFA0BA77
3 changed files with 64 additions and 44 deletions

View file

@ -24,11 +24,11 @@ use Friendica\App;
use Friendica\Core\System;
use Friendica\DI;
require_once("mod/notes.php");
require_once 'mod/notes.php';
function update_notes_content(App $a) {
$profile_uid = intval($_GET["p"]);
function update_notes_content(App $a)
{
$profile_uid = intval($_GET['p']);
/**
*