added curly braces + space between "if" and brace

Signed-off-by: Roland Häder <roland@mxchange.org>

Conflicts:
	mod/notify.php
This commit is contained in:
Roland Häder 2016-12-20 11:27:40 +01:00
parent fd0e2a9406
commit 4780df394d
1 changed files with 12 additions and 6 deletions

View File

@ -3,7 +3,10 @@ require_once('include/NotificationsManager.php');
function notify_init(&$a) {
if(! local_user()) return;
if (! local_user()) {
return;
}
$nm = new NotificationsManager();
if ($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) {
@ -17,9 +20,10 @@ function notify_init(&$a) {
$urldata = parse_url($note['link']);
$guid = basename($urldata["path"]);
$itemdata = get_item_id($guid, local_user());
if ($itemdata["id"] != 0)
if ($itemdata["id"] != 0) {
$note['link'] = App::get_baseurl().'/display/'.$itemdata["nick"].'/'.$itemdata["id"];
}
}
goaway($note['link']);
}
@ -37,7 +41,9 @@ function notify_init(&$a) {
}
function notify_content(&$a) {
if(! local_user()) return login();
if (! local_user()) {
return login();
}
$nm = new NotificationsManager();