From b1214fa0c4f3a3e783f1c3adb1afedb717e86e69 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 30 Mar 2018 09:53:46 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#553 where a note in AdminThemeUikit config screen needed to be updated for new module location --- wire/modules/AdminTheme/AdminThemeUikit/config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wire/modules/AdminTheme/AdminThemeUikit/config.php b/wire/modules/AdminTheme/AdminThemeUikit/config.php index cdc84800..cac051a1 100644 --- a/wire/modules/AdminTheme/AdminThemeUikit/config.php +++ b/wire/modules/AdminTheme/AdminThemeUikit/config.php @@ -167,7 +167,8 @@ function AdminThemeUikitConfig(AdminTheme $adminTheme, InputfieldWrapper $inputf $f->label = __('Primary CSS file'); $f->description = $defaultFileDesc . ' ' . __('We do not recommend changing this unless you are an admin theme developer.'); - $f->notes = $defaultFileNote . "\nsite/modules/AdminThemeUikit/uikit/dist/css/uikit.pw.css"; + $f->notes = $defaultFileNote . " " . + "[uikit.pw.css](" . $modules->wire('config')->urls('AdminThemeUikit') . "uikit/dist/css/uikit.pw.css)"; $f->collapsed = Inputfield::collapsedBlank; $f->icon = 'file-code-o'; $fieldset->add($f);