From 16dda900dab42724a6400f08b60ef39a7adf43b4 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Mon, 9 Apr 2012 20:36:11 +0200 Subject: [PATCH] Fixed small issue --- .../install/files/lib/system/option/OptionHandler.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wcfsetup/install/files/lib/system/option/OptionHandler.class.php b/wcfsetup/install/files/lib/system/option/OptionHandler.class.php index 79d431d670..96ce23c2e5 100644 --- a/wcfsetup/install/files/lib/system/option/OptionHandler.class.php +++ b/wcfsetup/install/files/lib/system/option/OptionHandler.class.php @@ -471,9 +471,9 @@ class OptionHandler implements IOptionHandler { if ($option->options) { $hasEnabledOption = false; - $options = explode(',', strtoupper($option->options)); - foreach ($options as $option) { - if (defined($option) && constant($option)) { + $__options = explode(',', strtoupper($option->options)); + foreach ($__options as $__option) { + if (defined($__option) && constant($__option)) { $hasEnabledOption = true; break; } -- 2.20.1