Aleksander Machniak
2014-01-02 7a3c0c96c469d0855ba27476fc6adde25ae8fa72
Use '0' instead of 0, to fix possible issue.
1 files modified
2 ■■■ changed files
program/lib/Roundcube/html.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/html.php
@@ -677,7 +677,7 @@
     */
    public function __construct($attrib = array())
    {
        $default_attrib = self::$doctype == 'xhtml' ? array('summary' => '', 'border' => 0) : array();
        $default_attrib = self::$doctype == 'xhtml' ? array('summary' => '', 'border' => '0') : array();
        $this->attrib = array_merge($attrib, $default_attrib);
        if (!empty($attrib['tagname']) && $attrib['tagname'] != 'table') {