mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Normalize App parameter declaration (mod folder, 2 out of 3)
This commit is contained in:
parent
ee39aba490
commit
f92918f471
42 changed files with 133 additions and 133 deletions
|
@ -4,7 +4,7 @@ require_once('include/contact_widgets.php');
|
|||
require_once('include/redir.php');
|
||||
|
||||
|
||||
function profile_init(App &$a) {
|
||||
function profile_init(App $a) {
|
||||
|
||||
if(! x($a->page,'aside'))
|
||||
$a->page['aside'] = '';
|
||||
|
@ -71,7 +71,7 @@ function profile_init(App &$a) {
|
|||
}
|
||||
|
||||
|
||||
function profile_content(&$a, $update = 0) {
|
||||
function profile_content(App $a, $update = 0) {
|
||||
|
||||
$category = $datequery = $datequery2 = '';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue