diff options
Diffstat (limited to 'library/WT/Theme/Minimal.php')
| -rw-r--r-- | library/WT/Theme/Minimal.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/WT/Theme/Minimal.php b/library/WT/Theme/Minimal.php index 286d9d6076..b1beddf8c4 100644 --- a/library/WT/Theme/Minimal.php +++ b/library/WT/Theme/Minimal.php @@ -25,13 +25,13 @@ use WT_I18N; */ class Minimal extends BaseTheme { /** {@inheritdoc} */ - public function cssUrl() { + public function assetUrl() { return 'themes/minimal/css-1.7.0/'; } /** {@inheritdoc} */ protected function favicon() { - return '<link rel="icon" href="' . $this->cssUrl() . 'favicon.png" type="image/png">'; + return '<link rel="icon" href="' . $this->assetUrl() . 'favicon.png" type="image/png">'; } /** {@inheritdoc} */ @@ -107,7 +107,7 @@ class Minimal extends BaseTheme { protected function stylesheets() { return array( 'themes/minimal/jquery-ui-1.11.2/jquery-ui.css', - $this->cssUrl() . 'style.css', + $this->assetUrl() . 'style.css', ); } |
