diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-03-24 13:58:26 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-03-24 13:58:26 -0700 |
commit | a9dcb92d783a77b493d865c655244bb8e5d54a41 (patch) | |
tree | b1371aa5b5e87c76b7e8676237624134e3827714 /includes | |
parent | 41acac169cf71b9912a20ffe336dc685b221d74c (diff) | |
download | pathery-a9dcb92d783a77b493d865c655244bb8e5d54a41.tar.xz |
Missing wallOrientation SQL. Changed back to 25 per-notification.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/datas.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/datas.php b/includes/datas.php index 4d42c1a..934c1d7 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -18,7 +18,7 @@ function getNotified($userID) { FROM `achievements` WHERE `notified` = false AND userID = '$userID' - LIMIT 5"; + LIMIT 25"; $resultA = mysql_query($sql); if (mysql_num_rows($resultA) <= 0) return false; |