File includes/functions/html_output.php
has many occurrences of this:
I believe double quotes should be nested inside single quotes, therefore a double quote is missing.Code:$image .= ' title=" '
File includes/functions/html_output.php
has many occurrences of this:
I believe double quotes should be nested inside single quotes, therefore a double quote is missing.Code:$image .= ' title=" '
That looks like code that is building an image call, and in the particular location a bit of HTML
( title=") is being accumulated into the variable. The next thing in the code should be to accumulate the value of a variable or constant with the title info, followed by another double quote " and probably a > to close the <img> tag.
Not a bug.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Thanks all for the tuition.
I missed to read the whole line, the "missing double quotes" are at the end of the line.
Sorry about that.