alecpl
2012-04-23 7c722504c6f36997ba3e13cd55c079254dd8fb54
- Remove redundant strtoupper() call


1 files modified
4 ■■■■ changed files
program/include/rcube_result_index.php 4 ●●●● patch | view | raw | blame | history
program/include/rcube_result_index.php
@@ -89,11 +89,11 @@
                        $param = strtoupper($m[1]);
                        $value = $m[2];
                        $this->params[strtoupper($m[1])] = $value;
                        $this->params[$param] = $value;
                        $data_item = substr($data_item, strlen($m[0]));
                        if (in_array($param, array('COUNT', 'MIN', 'MAX'))) {
                            $this->meta[strtolower($param)] = (int) $m[2];
                            $this->meta[strtolower($param)] = (int) $value;
                        }
                    }