]> git.mxchange.org Git - friendica.git/commitdiff
Avoid SQL errors
authorMichael <heluecht@pirati.ca>
Sun, 11 Dec 2016 07:09:48 +0000 (07:09 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 11 Dec 2016 07:09:48 +0000 (07:09 +0000)
mod/network.php

index 6a074d08325d1c14dc554719cd6a01fa84ff2aa9..cafaa11aecca87d53a91943556020f0185b3d977 100644 (file)
@@ -442,8 +442,8 @@ function network_content(&$a, $update = 0) {
        // desired.
 
        $sql_post_table = "";
-       $sql_options  = (($star) ? " and starred = 1 " : '');
-       $sql_options .= (($bmark) ? " and bookmark = 1 " : '');
+       $sql_options  = (($star) ? " AND `thread`.`starred` " : '');
+       $sql_options .= (($bmark) ? " AND `thread`.`bookmark` " : '');
        $sql_extra = $sql_options;
        $sql_extra2 = "";
        $sql_extra3 = "";