diff options
Diffstat (limited to 'phpBB/phpbb/files/factory.php')
-rw-r--r-- | phpBB/phpbb/files/factory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/files/factory.php b/phpBB/phpbb/files/factory.php index b28a7ab659..508c50c6ce 100644 --- a/phpBB/phpbb/files/factory.php +++ b/phpBB/phpbb/files/factory.php @@ -42,7 +42,7 @@ class factory { $service = false; - $name = (strpos($name, 'files.') === false && strpos($name, '.') === false) ? 'files.' . $name : $name; + $name = (strpos($name, 'files.') === false) ? 'files.' . $name : $name; try { |