diff options
author | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 17:03:06 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 17:03:06 +0200 |
commit | c1482d1c08360e6401534a1391da2b650c37d34d (patch) | |
tree | 913ad1c4ae2cf32c58ad40069e63585d7c0dc461 /lib/plugins/testing | |
parent | 8553d24d33ab5f260c6e19959de764dd8472d438 (diff) | |
download | dokuwiki-c1482d1c08360e6401534a1391da2b650c37d34d.tar.gz dokuwiki-c1482d1c08360e6401534a1391da2b650c37d34d.zip |
codestyle adjustments: function argument spacing
Diffstat (limited to 'lib/plugins/testing')
-rw-r--r-- | lib/plugins/testing/action.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/testing/action.php b/lib/plugins/testing/action.php index b98d8bb63..7f374b5e9 100644 --- a/lib/plugins/testing/action.php +++ b/lib/plugins/testing/action.php @@ -21,6 +21,6 @@ class action_plugin_testing extends ActionPlugin { public function dokuwikiStarted() { $param = []; Event::createAndTrigger('TESTING_PLUGIN_INSTALLED', $param); - msg('The testing plugin is enabled and should be disabled.',-1); + msg('The testing plugin is enabled and should be disabled.', -1); } } |