We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd2834 commit 3aef70fCopy full SHA for 3aef70f
helper/dwcssloader.php
@@ -113,7 +113,11 @@ protected function css_pluginFormatStyles($format) {
113
$list = array();
114
$plugins = plugin_list();
115
116
- $usestyle = explode(',', $this->getConf('usestyles'));
+ $temp = explode(',', $this->getConf('usestyles'));
117
+ $usestyle = array();
118
+ foreach ($temp as $entry) {
119
+ $usestyle [] = trim ($entry);
120
+ }
121
foreach($plugins as $p) {
122
if(in_array($p, $usestyle)) {
123
$list[DOKU_PLUGIN . $p ."/screen.css"] = DOKU_BASE . "lib/plugins/". $p ."/";
0 commit comments