diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-09 16:20:33 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-09 16:20:33 +0000 |
commit | b0a6431c355a9b1126db281f4e65bdb1f424e05f (patch) | |
tree | 5c8695c1d4b8ed69cc567793460f2153a0b58468 | |
parent | 3e9f2c551a4836e31c1031a9fe783a3d643341cd (diff) | |
download | elgg-b0a6431c355a9b1126db281f4e65bdb1f424e05f.tar.gz elgg-b0a6431c355a9b1126db281f4e65bdb1f424e05f.tar.bz2 |
Minor display fix.
git-svn-id: https://code.elgg.org/elgg/trunk@2693 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/notifications/views/default/notifications/subscriptions/collections.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/notifications/views/default/notifications/subscriptions/collections.php b/mod/notifications/views/default/notifications/subscriptions/collections.php index 41c3f76c8..3fcc93fd7 100644 --- a/mod/notifications/views/default/notifications/subscriptions/collections.php +++ b/mod/notifications/views/default/notifications/subscriptions/collections.php @@ -27,6 +27,7 @@ <td> </td>
<?php
$i = 0;
+ global $NOTIFICATION_HANDLERS;
foreach($NOTIFICATION_HANDLERS as $method => $foo) {
if ($i > 0)
echo "<td class=\"spacercolumn\"> </td>";
@@ -39,7 +40,6 @@ <td> </td>
</tr>
<?php
- global $NOTIFICATION_HANDLERS;
$members = array();
if ($friends = get_user_friends($vars['user']->guid,'',9999,0)) {
foreach($friends as $friend)
@@ -82,6 +82,7 @@ END; echo $fields;
?>
+ <td> </td>
</tr>
<?php
|