diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-23 08:22:13 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-23 08:22:13 +0000 |
| commit | 39319b552181917e7663bd3c07c95ed0d260794d (patch) | |
| tree | 44d7d9e75d44ce046587ddfd524c83083d499fe0 /roundcubemail/program | |
| parent | 0ebe2adc551d7c6aabc69c2bf969bcd2aa712d06 (diff) | |
- Remove redundant strtoupper() call
git-svn-id: https://svn.roundcube.net/trunk@6116 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/include/rcube_result_index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_result_index.php b/roundcubemail/program/include/rcube_result_index.php index 1c7a5e067..2572aea77 100644 --- a/roundcubemail/program/include/rcube_result_index.php +++ b/roundcubemail/program/include/rcube_result_index.php @@ -89,11 +89,11 @@ class rcube_result_index $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; } } |
