diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
| commit | 283ad4ebea9e93a97848000f38ca91b23ce883ff (patch) | |
| tree | 0b9ea618b438156b3803df115afec5e34d30e3a8 /index.php | |
| parent | d334023267848accb339c8ec3186be2afde3b514 (diff) | |
| parent | 8727fb3ba8a28da48c71bdd39166b9aeb3c3d986 (diff) | |
Merge branch 'feature/unused-var-cleanup' into 'master'
Clean up some unused variables.
See merge request tt-rss/tt-rss!19
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ <style type="text/css"> <?php - foreach (PluginHost::getInstance()->get_plugins() as $n => $p) { + foreach (PluginHost::getInstance()->get_plugins() as $p) { if (method_exists($p, "get_css")) { echo $p->get_css(); } |