Opened 17 years ago
Closed 15 years ago
#695 closed Defect (fixed)
Malformed HTML Attribute in Web Buttons
Reported by: | AlphaLaser | Owned by: | davea |
---|---|---|---|
Priority: | Minor | Milestone: | Undetermined |
Component: | Web - Project | Version: | |
Keywords: | malformed html | Cc: |
Description (last modified by )
The HTML attributes for the <noscript> fallback in the web button code are malformed. They should be surrounded by double quotes so that attribute values containing spaces can be properly parsed.
in html/inc/util.inc, line 674:
<a href=$url title=$title>$text</a>
should be:
<a href=\"$url\" title=\"$title\">$text</a>
Change History (4)
comment:1 Changed 17 years ago by
comment:3 Changed 17 years ago by
Fixed in revision 16047.
We no longer use javascript or noscript fallback to generate the buttons but simply use CSS to style the link to look like a button.
comment:4 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Make that line 674