Summary: | String.link() function does not correctly quote the url. | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Brian Glass <bjg> |
Component: | kjs | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Mandrake RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Brian Glass
2004-07-22 14:37:55 UTC
CVS commit by pletourn: Missing quotation in attributes CCMAIL:85693-done@bugs.kde.org M +4 -4 string_object.cpp 1.85.4.1 --- kdelibs/kjs/string_object.cpp #1.85:1.85.4.1 @@ -543,17 +543,17 @@ Value StringProtoFuncImp::call(ExecState break; case Fontcolor: - result = String("<FONT COLOR=" + a0.toString(exec) + ">" + result = String("<FONT COLOR=\"" + a0.toString(exec) + "\">" + s + "</FONT>"); break; case Fontsize: - result = String("<FONT SIZE=" + a0.toString(exec) + ">" + result = String("<FONT SIZE=\"" + a0.toString(exec) + "\">" + s + "</FONT>"); break; case Anchor: - result = String("<a name=" + a0.toString(exec) + ">" + result = String("<a name=\"" + a0.toString(exec) + "\">" + s + "</a>"); break; case Link: - result = String("<a href=" + a0.toString(exec) + ">" + result = String("<a href=\"" + a0.toString(exec) + "\">" + s + "</a>"); break; |