Aleksander Machniak
2014-06-30 b8bcca7033b3d10eb7da4b7a1f9987ee9e25a45b
program/lib/Roundcube/html.php
@@ -283,11 +283,11 @@
                continue;
            }
            // ignore not allowed attributes, except data-*
            // ignore not allowed attributes, except aria-* and data-*
            if (!empty($allowed)) {
                $is_data_attr = @substr_compare($key, 'data-', 0, 5) === 0;
                $is_aria_attr = @substr_compare($key, 'aria-', 0, 5) === 0;
                if (!$is_aria_attr && !isset($allowed_f[$key]) && (!$is_data_attr || !isset($allowed_f['data-*']))) {
                if (!$is_aria_attr && !$is_data_attr && !isset($allowed_f[$key])) {
                    continue;
                }
            }