Changeset 5822 in subversion for branches/devel-framework/roundcubemail/program/include/html.php
- Timestamp:
- Jan 25, 2012 2:19:14 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/devel-framework/roundcubemail/program/include/html.php
r5807 r5822 296 296 } 297 297 else if ($key=='value') { 298 $attrib_arr[] = $key . '="' . Q($value, 'strict', false) . '"';298 $attrib_arr[] = $key . '="' . rcube_ui::Q($value, 'strict', false) . '"'; 299 299 } 300 300 else { 301 $attrib_arr[] = $key . '="' . Q($value) . '"';301 $attrib_arr[] = $key . '="' . rcube_ui::Q($value) . '"'; 302 302 } 303 303 } … … 541 541 542 542 if (!empty($value) && !preg_match('/mce_editor/', $this->attrib['class'])) { 543 $value = Q($value, 'strict', false);543 $value = rcube_ui::Q($value, 'strict', false); 544 544 } 545 545 … … 615 615 in_array($option['text'], $select, true)) ? 1 : null); 616 616 617 $this->content .= self::tag('option', $attr, Q($option['text']));617 $this->content .= self::tag('option', $attr, rcube_ui::Q($option['text'])); 618 618 } 619 619 return parent::show();
Note: See TracChangeset
for help on using the changeset viewer.
