From 254159cc2673992b6c3b02e328e7dc3da1d9a384 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 16 Feb 2014 17:36:52 +0100 Subject: [PATCH] Only some code beautification. --- mod/notify.php | 6 +++--- mod/ping.php | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/mod/notify.php b/mod/notify.php index b4d60a747c..256bb77932 100644 --- a/mod/notify.php +++ b/mod/notify.php @@ -40,14 +40,14 @@ function notify_content(&$a) { return login(); $notif_tpl = get_markup_template('notifications.tpl'); - + $not_tpl = get_markup_template('notify.tpl'); require_once('include/bbcode.php'); $r = q("SELECT * from notify where uid = %d and seen = 0 order by date desc", intval(local_user()) ); - + if (count($r) > 0) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( @@ -60,7 +60,7 @@ function notify_content(&$a) { } else { $notif_content .= t('No more system notifications.'); } - + $o .= replace_macros($notif_tpl, array( '$notif_header' => t('System Notifications'), '$tabs' => '', // $tabs, diff --git a/mod/ping.php b/mod/ping.php index a5bf315b5b..07884f4530 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -5,7 +5,7 @@ require_once("include/datetime.php"); function ping_init(&$a) { header("Content-type: text/xml"); - + echo " "; @@ -69,7 +69,7 @@ function ping_init(&$a) { intval(local_user()) ); - if(count($r)) { + if(count($r)) { $arr = array('items' => $r); call_hooks('network_ping', $arr); @@ -95,11 +95,11 @@ function ping_init(&$a) { break; case ACTIVITY_FRIEND: $obj = parse_xml_string($xmlhead.$it['object']); - $it['fname'] = $obj->title; + $it['fname'] = $obj->title; $friends[] = $it; break; default: - if ($it['parent']!=$it['id']) { + if ($it['parent']!=$it['id']) { $comments[] = $it; } else { if(! $it['wall']) @@ -121,7 +121,7 @@ function ping_init(&$a) { WHERE `intro`.`uid` = %d AND `intro`.`blocked` = 0 AND `intro`.`ignore` = 0 AND `intro`.`contact-id`!=0", intval(local_user()) ); - + $intro = count($intros1) + count($intros2); $intros = $intros1+$intros2; @@ -135,7 +135,7 @@ function ping_init(&$a) { ); if($mails) $mail = $mails[0]['total']; - + if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){ $regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1"); if($regs) @@ -195,7 +195,7 @@ function ping_init(&$a) { xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message) ); } - + echo "$intro $mail $network @@ -208,7 +208,7 @@ function ping_init(&$a) { $events_today $birthdays $birthdays_today\r\n"; - + $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags); require_once('include/bbcode.php'); @@ -222,7 +222,7 @@ function ping_init(&$a) { if($zz['seen'] == 0) $sysnotify ++; } - } + } echo ' '; if(count($z)) { @@ -234,7 +234,7 @@ function ping_init(&$a) { if($firehose) { if ($intro>0){ - foreach ($intros as $i) { + foreach ($intros as $i) { echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), 'notify-unseen',t("{0} wants to be your friend") ); }; }