diff options
-rw-r--r-- | mod/connect.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/connect.php b/mod/connect.php index 5b1f258ad..396fca645 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -38,7 +38,8 @@ function connect_post(&$a) { $text = escape_tags($_POST['text']); if($has_premium != $premium) { - $r = q("update channel set channel_pageflags = ( channel_pageflags & ~%d ) where channel_id = %d", + $r = q("update channel set channel_pageflags = ( channel_pageflags %s %d ) where channel_id = %d", + db_getfunc('^'), intval(PAGE_PREMIUM), intval(local_user()) ); |