diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-05 03:33:02 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-05 03:33:02 -0700 |
commit | f5826105bfc514599b2c5b6692bca14ca4bc5d78 (patch) | |
tree | 7255ddd102b2141ad581f636be37bc60a94e669c /mod/notifications.php | |
parent | 766b31707037a82ffd9140bfe599c27f4ef01495 (diff) | |
download | volse-hubzilla-f5826105bfc514599b2c5b6692bca14ca4bc5d78.tar.gz volse-hubzilla-f5826105bfc514599b2c5b6692bca14ca4bc5d78.tar.bz2 volse-hubzilla-f5826105bfc514599b2c5b6692bca14ca4bc5d78.zip |
group work, dfrn_poll
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 1064729ff..6ade0c0bb 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -28,7 +28,7 @@ function notifications_post(&$a) { return; } if($_POST['submit'] == 'Discard') { - $r = q("DELETE `intro` WHERE `id` = %d LIMIT 1", intval($intro_id)); + $r = q("DELETE FROM `intro` WHERE `id` = %d LIMIT 1", intval($intro_id)); $r = q("DELETE `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($request_id), intval($_SESSION['uid'])); |