forked from GNUsocial/gnu-social
Fix regression in PopularNoticeSection: tag parameter was broken, causing sidebar on tag pages to show untagged favorites.
This commit is contained in:
parent
0265cdc1c9
commit
f468180743
@ -53,12 +53,12 @@ class Popularity
|
||||
{
|
||||
// @fixme there should be a common func for this
|
||||
if (common_config('db', 'type') == 'pgsql') {
|
||||
if (!empty($this->out->tag)) {
|
||||
$tag = pg_escape_string($this->out->tag);
|
||||
if (!empty($this->tag)) {
|
||||
$tag = pg_escape_string($this->tag);
|
||||
}
|
||||
} else {
|
||||
if (!empty($this->out->tag)) {
|
||||
$tag = mysql_escape_string($this->out->tag);
|
||||
if (!empty($this->tag)) {
|
||||
$tag = mysql_escape_string($this->tag);
|
||||
}
|
||||
}
|
||||
$weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
|
||||
|
Loading…
Reference in New Issue
Block a user