diff options
author | friendica <info@friendica.com> | 2012-07-08 03:38:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-08 03:38:10 -0700 |
commit | 95fdba753c67110c6461ebf659d90304bbb835a8 (patch) | |
tree | 0ad58eb2f39197b73a95141a8e98abc7de4f48f4 /mod/content.php | |
parent | 8c3703c4f97ff0f3a54f48a3d02ed15060a2d5c1 (diff) | |
download | volse-hubzilla-95fdba753c67110c6461ebf659d90304bbb835a8.tar.gz volse-hubzilla-95fdba753c67110c6461ebf659d90304bbb835a8.tar.bz2 volse-hubzilla-95fdba753c67110c6461ebf659d90304bbb835a8.zip |
remove bookmark content flag
Diffstat (limited to 'mod/content.php')
-rw-r--r-- | mod/content.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mod/content.php b/mod/content.php index 5f3e954f6..01856d88d 100644 --- a/mod/content.php +++ b/mod/content.php @@ -69,7 +69,6 @@ function content_content(&$a, $update = 0) { $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); - $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0); $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); @@ -102,7 +101,6 @@ function content_content(&$a, $update = 0) { $sql_options = (($star) ? " and starred = 1 " : ''); - $sql_options .= (($bmark) ? " and bookmark = 1 " : ''); $sql_nets = (($nets) ? sprintf(" and `contact`.`network` = '%s' ", dbesc($nets)) : ''); |