1
0
Fork 0

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

This commit is contained in:
Hypolite Petovan 2017-01-09 23:14:25 +11:00
commit f92918f471
42 changed files with 133 additions and 133 deletions

View file

@ -9,7 +9,7 @@ require_once("include/NotificationsManager.php");
require_once("include/contact_selectors.php");
require_once("include/network.php");
function notifications_post(App &$a) {
function notifications_post(App $a) {
if (! local_user()) {
goaway(z_root());
@ -65,7 +65,7 @@ function notifications_post(App &$a) {
}
}
function notifications_content(App &$a) {
function notifications_content(App $a) {
if (! local_user()) {
notice( t('Permission denied.') . EOL);