diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-17 20:38:26 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-17 20:38:26 +0200 |
commit | fe626833af5bcb251ae7d78afa863b896cb70547 (patch) | |
tree | cf8945063e3cdc31fce3456844178c2861b49272 /program | |
parent | 282dff4f18672c22f171768a983a740d1a8e0096 (diff) |
Allow onload attribute on iframe element
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/Roundcube/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/html.php b/program/lib/Roundcube/html.php index 7b30e60cb..dbc9ca51f 100644 --- a/program/lib/Roundcube/html.php +++ b/program/lib/Roundcube/html.php @@ -218,7 +218,7 @@ class html $attr = array('src' => $attr); } return self::tag('iframe', $attr, $cont, array_merge(self::$common_attrib, - array('src','name','width','height','border','frameborder'))); + array('src','name','width','height','border','frameborder','onload'))); } /** |