mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-22 16:21:18 -04:00
* Use typed access to request parameters This was a big source of mixed datatypes in many places * Fix notifications * Fix bookmarkAction
18 lines
526 B
PHTML
Executable File
18 lines
526 B
PHTML
Executable File
<?php /** @var FreshRSS_View $this */ ?>
|
|
<?php
|
|
header('Content-Type: application/json; charset=UTF-8');
|
|
|
|
$url = array(
|
|
'c' => Minz_Request::controllerName(),
|
|
'a' => Minz_Request::actionName(),
|
|
'params' => $_GET,
|
|
);
|
|
|
|
$url['params']['is_favorite'] = (Minz_Request::paramTernary('is_favorite') ?? true) ? '0' : '1';
|
|
|
|
FreshRSS::loadStylesAndScripts();
|
|
echo json_encode(array(
|
|
'url' => str_ireplace('&', '&', Minz_Url::display($url)),
|
|
'icon' => _i($url['params']['is_favorite'] === '1' ? 'non-starred' : 'starred')
|
|
));
|