diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-14 01:59:19 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-14 01:59:19 -0700 |
commit | fdbc1c157ef331d37b177f61de01fa298628bf02 (patch) | |
tree | f77d5380abc0825bd9c65e5b029a5fda662cc2f0 /do.php | |
parent | 9b0b31db4eb2eddd674366cc79228cd66fb0b1bb (diff) | |
download | pathery-fdbc1c157ef331d37b177f61de01fa298628bf02.tar.xz |
Bugfix forever wall-notifications.
Diffstat (limited to 'do.php')
-rw-r--r-- | do.php | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -52,8 +52,7 @@ if (isset($_GET['checkachieve']) && $_GET['checkachieve'] == 'true' && $_SESSION $userID = $_SESSION['userID'];
//Located in includes/datas.php
$note = getNotified($userID);
- if ($note !== false)
- $json['notificationtext'] = $note;
+ if ($note !== false) $json['notificationtext'] = $note;
}
if ($_GET['r'] == 'reqMemberPage') {
|