diff --git a/Changelog.md b/Changelog.md index bb02aaaf..ed2ccce3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ _Currently there aren't any plans to make another beta release. These changes wi ### Fixed - Make `PEPPERMINT_THEME` environment variable work again when compiling on the command line + - Fixed invalid HTML that was causing layout issues on the master settings page ## v0.21-beta1 diff --git a/modules/feature-guiconfig.php b/modules/feature-guiconfig.php index 887eecbe..dfaecde1 100644 --- a/modules/feature-guiconfig.php +++ b/modules/feature-guiconfig.php @@ -37,7 +37,7 @@ $content = "
This page lets you configure $settings->sitename's master settings. Please be careful - you can break things easily on this page if you're not careful!
\n"; if(module_exists("feature-user-table")) - $content .= "Looking to manage $settings->sitename's users? Try the user table instead!
\n"; + $content .= "Looking to manage $settings->sitename's users? Try the user table instead!
\n"; if(module_exists("feature-theme-gallery")) $content .= "Want to change $settings->sitename's theme? Try the theme gallery!
"; $content .= "You're currently running Pepperminty Wiki $version+" . substr($commit, 0, 7) . ".
\n";