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