1
1
Fork 0

Normalize App parameter declaration (mod folder, 3 out of 3)

This commit is contained in:
Hypolite Petovan 2017-01-09 23:14:55 +11:00
commit a7ce601580
41 changed files with 78 additions and 78 deletions

View file

@ -1,6 +1,6 @@
<?php
function profperm_init(App &$a) {
function profperm_init(App $a) {
if (! local_user()) {
return;
@ -14,7 +14,7 @@ function profperm_init(App &$a) {
}
function profperm_content(App &$a) {
function profperm_content(App $a) {
if (! local_user()) {
notice( t('Permission denied') . EOL);
@ -109,9 +109,9 @@ function profperm_content(App &$a) {
}
$o .= '<div id="prof-update-wrapper">';
if($change)
if($change)
$o = '';
$o .= '<div id="prof-members-title">';
$o .= '<h3>' . t('Visible To') . '</h3>';
$o .= '</div>';