N°7315 - Migrate deprecated usages of WebPage::add_linked_stylesheet()

This commit is contained in:
Molkobain
2024-03-05 23:06:44 +01:00
parent 655539c289
commit fe6ee083f6
15 changed files with 39 additions and 39 deletions

View File

@@ -28,8 +28,8 @@ class ErrorPage extends NiceWebPage
parent::__construct($sTitle);
$this->LinkScriptFromAppRoot("js/jquery.blockUI.js");
$this->LinkScriptFromAppRoot("setup/setup.js");
$this->add_linked_stylesheet(utils::GetAbsoluteUrlAppRoot().'css/font-awesome/css/all.min.css');
$this->add_linked_stylesheet(utils::GetAbsoluteUrlAppRoot().'css/font-combodo/font-combodo.css');
$this->LinkStylesheetFromAppRoot('css/font-awesome/css/all.min.css');
$this->LinkStylesheetFromAppRoot('css/font-combodo/font-combodo.css');
$this->add_saas("css/setup.scss");
$oKpi->ComputeStats(get_class($this).' creation', 'ErrorPage');
}