diff options
author | thomascube <thomas@roundcube.net> | 2008-09-21 10:18:28 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-21 10:18:28 +0000 |
commit | 95fcc33472a34f4892f223d39452668467cb3129 (patch) | |
tree | bef4251a125b46813b5e91f9725164c0b107b379 /program/steps/mail | |
parent | e2c610ebfa9155888ff60f4fb3d77bffbc1f2293 (diff) |
Separate method to create iframe tags (with a list of allowed attributes)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 446984066..b6de0b83b 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -408,7 +408,7 @@ function rcmail_messagecontent_frame($attrib) $OUTPUT->set_env('contentframe', $attrib['id']); $OUTPUT->set_env('blankpage', $attrib['src'] ? $OUTPUT->abs_url($attrib['src']) : 'program/blank.gif'); - return html::tag('iframe', $attrib); + return html::iframe($attrib); } @@ -1125,9 +1125,9 @@ function rcmail_message_part_frame($attrib) $part = $MESSAGE->mime_parts[asciiwords(get_input_value('_part', RCUBE_INPUT_GPC))]; $ctype_primary = strtolower($part->ctype_primary); - $attrib['src'] = Q('./?'.str_replace('_frame=', ($ctype_primary=='text' ? '_show=' : '_preload='), $_SERVER['QUERY_STRING'])); + $attrib['src'] = './?' . str_replace('_frame=', ($ctype_primary=='text' ? '_show=' : '_preload='), $_SERVER['QUERY_STRING']); - return html::tag('iframe', $attrib); + return html::iframe($attrib); } |