|
Line 0
Link Here
|
|
|
1 |
--- program/lib/Roundcube/rcube_washtml.php.orig 2016-05-29 19:29:14 UTC |
| 2 |
+++ program/lib/Roundcube/rcube_washtml.php |
| 3 |
@@ -370,7 +370,7 @@ class rcube_washtml |
| 4 |
*/ |
| 5 |
private function is_link_attribute($tag, $attr) |
| 6 |
{ |
| 7 |
- return $tag == 'a' && $attr == 'href'; |
| 8 |
+ return ($tag == 'a' || $tag == 'area') && $attr == 'href'; |
| 9 |
} |
| 10 |
|
| 11 |
/** |