Ignore:
Timestamp:
Jan 25, 2012 2:19:14 PM (16 months ago)
Author:
alec
Message:
  • Remove deprecated functions usage, some improvements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/devel-framework/roundcubemail/program/include/html.php

    r5807 r5822  
    296296            } 
    297297            else if ($key=='value') { 
    298                 $attrib_arr[] = $key . '="' . Q($value, 'strict', false) . '"'; 
     298                $attrib_arr[] = $key . '="' . rcube_ui::Q($value, 'strict', false) . '"'; 
    299299            } 
    300300            else { 
    301                 $attrib_arr[] = $key . '="' . Q($value) . '"'; 
     301                $attrib_arr[] = $key . '="' . rcube_ui::Q($value) . '"'; 
    302302            } 
    303303        } 
     
    541541 
    542542        if (!empty($value) && !preg_match('/mce_editor/', $this->attrib['class'])) { 
    543             $value = Q($value, 'strict', false); 
     543            $value = rcube_ui::Q($value, 'strict', false); 
    544544        } 
    545545 
     
    615615                  in_array($option['text'], $select, true)) ? 1 : null); 
    616616 
    617             $this->content .= self::tag('option', $attr, Q($option['text'])); 
     617            $this->content .= self::tag('option', $attr, rcube_ui::Q($option['text'])); 
    618618        } 
    619619        return parent::show(); 
Note: See TracChangeset for help on using the changeset viewer.