mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-01 17:11:08 -05:00
Fix bug in user query 4360 (#4371)
Fix bug when taking advantage of https://github.com/FreshRSS/FreshRSS/pull/4360 At one place, the raw URL parameter was accessed instead of being reconstructed
This commit is contained in:
committed by
GitHub
parent
d6fd78b968
commit
20eba951f7
@@ -39,9 +39,12 @@
|
||||
<a href="<?= _url('configure', 'queries') ?>"><?= _i('configure') ?></a>
|
||||
</li>
|
||||
|
||||
<?php foreach (FreshRSS_Context::$user_conf->queries as $query) { ?>
|
||||
<?php
|
||||
foreach (FreshRSS_Context::$user_conf->queries as $raw_query) {
|
||||
$query = new FreshRSS_UserQuery($raw_query);
|
||||
?>
|
||||
<li class="item query">
|
||||
<a href="<?= $query['url'] ?>"><?= $query['name'] ?></a>
|
||||
<a href="<?= $query->getUrl() ?>"><?= $query->getName() ?></a>
|
||||
</li>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user