mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-22 00:02:45 -04:00
* Remarque's from Alkarex * indentation * indentation * Apply suggestions from code review Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Remarque's from Alkarex * A few improvements * Remarque's from Alkarex * Remarque's from Alkarex * Remarque's from Alkarex * Remarque's from Alkarex * Fixes and improvments * Fix getTagsForEntry --------- Co-authored-by: Luc <sanchezluc+freshrss@gmail.com> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
9 lines
189 B
PHTML
Executable File
9 lines
189 B
PHTML
Executable File
<?php
|
|
/** @var FreshRSS_View $this */
|
|
header('Content-Type: application/json; charset=UTF-8');
|
|
|
|
FreshRSS::loadStylesAndScripts();
|
|
echo json_encode([
|
|
'tags' => $this->tagsForEntries,
|
|
]);
|