blob: 2d1760b87f58ed4170d9dad17739af4865a8cb9b (
plain)
1
2
3
4
5
6
7
8
|
<?php
/** @var FreshRSS_View $this */
header('Content-Type: application/json; charset=UTF-8');
FreshRSS::loadStylesAndScripts();
echo json_encode([
'tags' => $this->tagsForEntries,
]);
|