Changeset 9b3e09f in github


Ignore:
Timestamp:
Feb 28, 2008 5:15:52 PM (5 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
4a2765a
Parents:
27564f1
Message:

Fix bug in html select class introduced with r1155

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_html.inc

    r27564f1 r9b3e09f  
    617617    { 
    618618      foreach ($names as $i => $text) 
    619         $this->options[] = array('text' => $text, 'value' => (string)$values[$i]); 
     619        $this->options[] = array('text' => $text, 'value' => $values[$i]); 
    620620    } 
    621621    else 
    622       $this->options[] = array('text' => $names, 'value' => (string)$values); 
     622      $this->options[] = array('text' => $names, 'value' => $values); 
    623623  } 
    624624 
Note: See TracChangeset for help on using the changeset viewer.