summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-07-24 09:02:09 +0200
committerAleksander Machniak <alec@alec.pl>2014-07-24 09:02:09 +0200
commit0ee2db7a68b011af85c6b3ba924ff459e438a16a (patch)
tree53ce47fa09eb7a3bffa05b928b84ae9499a8aea9
parentb0b9cf00d2d7409569ed27a3388d3b05f2110196 (diff)
Support allowfullscreen attribute on iframe elements
-rw-r--r--program/lib/Roundcube/html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/html.php b/program/lib/Roundcube/html.php
index 3aae7cfe7..bcf89d7df 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','onload')));
+ array('src','name','width','height','border','frameborder','onload','allowfullscreen')));
}
/**