[various] Use __DIR__ constant in all Page registerStylesheet and registerFooterScript calls

This commit is contained in:
Hypolite Petovan 2021-11-20 04:29:09 -05:00
parent 5c0b20b21f
commit f0522a998b
10 changed files with 14 additions and 26 deletions

View file

@ -54,9 +54,8 @@ function nsfw_addon_settings(&$a, &$s)
return;
}
/* Add our stylesheet to the page so we can make our settings look nice */
DI::page()->registerStylesheet(__DIR__ . '/nsfw.css', 'all');
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/nsfw/nsfw.css' . '" media="all" />' . "\r\n";
$enable_checked = (intval(DI::pConfig()->get(local_user(), 'nsfw', 'disable')) ? '' : ' checked="checked" ');
$words = DI::pConfig()->get(local_user(), 'nsfw', 'words');