diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-20 12:43:00 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-20 12:43:00 +0000 |
commit | fed3443ae544ff731d484a83a4fbe449e6391689 (patch) | |
tree | afb0c0418a41c827568ae97c9eec58b291a8a72b /actions | |
parent | 21484765449cad24a9f9eca0360fb1c286ef051b (diff) | |
download | elgg-fed3443ae544ff731d484a83a4fbe449e6391689.tar.gz elgg-fed3443ae544ff731d484a83a4fbe449e6391689.tar.bz2 |
Making it case insensitive...
git-svn-id: https://code.elgg.org/elgg/trunk@2027 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/systemsettings/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 25e757b82..4260bf818 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -30,7 +30,7 @@ throw new InstallationException(elgg_echo('InstallationException:DatarootBlank')); // That it's valid - if (strpos($dataroot, $path)!==false) + if (stripos($dataroot, $path)!==false) throw new InstallationException(sprintf(elgg_echo('InstallationException:DatarootUnderPath'), $dataroot)); // Check data root is writable |