summaryrefslogtreecommitdiff
path: root/classes/pluginhost.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-08-16 09:31:16 +0300
committerAndrew Dolgov <[email protected]>2019-08-16 09:31:16 +0300
commitd94348421d8d791eec29afd2e01fb1c9ba181de1 (patch)
treed58719424fe0ec863ae7b76c566167247b745cb8 /classes/pluginhost.php
parent9c366a4811dd0b919171f3de04c4cd781c5e8e20 (diff)
use clean_filename() instead of basename()/clean() combinations in a bunch of places
Diffstat (limited to 'classes/pluginhost.php')
-rwxr-xr-xclasses/pluginhost.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pluginhost.php b/classes/pluginhost.php
index 9330e9e5e..eab808ae9 100755
--- a/classes/pluginhost.php
+++ b/classes/pluginhost.php
@@ -186,7 +186,7 @@ class PluginHost {
foreach ($plugins as $class) {
$class = trim($class);
- $class_file = strtolower(basename($class));
+ $class_file = strtolower(clean_filename($class));
if (!is_dir(__DIR__."/../plugins/$class_file") &&
!is_dir(__DIR__."/../plugins.local/$class_file")) continue;