1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:45:56 +00:00

do not enforce strict mode for plugins

This commit is contained in:
Andrew Dolgov
2018-03-08 18:41:03 +03:00
parent 3009ecc44f
commit a72643257a
2 changed files with 10 additions and 3 deletions

View File

@@ -117,7 +117,10 @@
print get_minified_js(["tt-rss.js",
"functions.js", "feedlist.js", "viewfeed.js", "PluginHost.js"]);
?>
</script>
<script type="text/javascript">
<?php
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
if (method_exists($p, "get_js")) {
echo "try {";