Changeset 5561 in subversion for trunk/roundcubemail/program/include/rcube_result_index.php
- Timestamp:
- Dec 7, 2011 4:29:56 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_result_index.php
r5557 r5561 158 158 $this->meta['length'] = 0; 159 159 } 160 else 161 // @TODO: check performance substr_count() vs. explode() 160 else { 162 161 $this->meta['count'] = 1 + substr_count($this->raw_data, self::SEPARATOR_ELEMENT); 162 } 163 163 164 164 return $this->meta['count']; … … 186 186 { 187 187 if (!isset($this->meta['max'])) { 188 // @TODO: do it by parsing raw_data?189 188 $this->meta['max'] = (int) @max($this->get()); 190 189 } … … 202 201 { 203 202 if (!isset($this->meta['min'])) { 204 // @TODO: do it by parsing raw_data?205 203 $this->meta['min'] = (int) @min($this->get()); 206 204 }
Note: See TracChangeset
for help on using the changeset viewer.
