mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:15:56 +00:00
dirname(__FILE__) -> __DIR__
This commit is contained in:
@@ -17,7 +17,7 @@ class Note extends Plugin {
|
||||
}
|
||||
|
||||
function get_js() {
|
||||
return file_get_contents(dirname(__FILE__) . "/note.js");
|
||||
return file_get_contents(__DIR__ . "/note.js");
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ class NSFW extends Plugin {
|
||||
}
|
||||
|
||||
function get_js() {
|
||||
return file_get_contents(dirname(__FILE__) . "/init.js");
|
||||
return file_get_contents(__DIR__ . "/init.js");
|
||||
}
|
||||
|
||||
function hook_render_article($article) {
|
||||
|
||||
Reference in New Issue
Block a user