diff options
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_shared.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index e740aeaa3..af5eb1fda 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -210,7 +210,7 @@ function array2js($arr, $type='') function in_array_nocase($needle, $haystack) { foreach ($haystack as $value) - if (strtolower($needle)===strtolower($value)) + if (rc_strtolower($needle)===rc_strtolower($value)) return true; return false; |