Skip to content

Commit

Permalink
[BUGFIX] Do not use relative paths for css includes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Mar 5, 2020
1 parent 8952cc1 commit 90a6bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/BackendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ protected function initializeDataTables(): void
{
$pageRenderer = $this->moduleTemplate->getPageRenderer();
$pageRenderer->loadRequireJsModule('TYPO3/CMS/Blog/Datatables');
$pageRenderer->addCssFile('../typo3conf/ext/blog/Resources/Public/Css/Datatables.min.css', 'stylesheet', 'all', '', false);
$pageRenderer->addCssFile('EXT:blog/Resources/Public/Css/Datatables.min.css', 'stylesheet', 'all', '', false);
}

/**
Expand Down

0 comments on commit 90a6bfc

Please sign in to comment.