Misha Gale - 2005-10-27

Logged In: YES
user_id=621849

I've found the fix for this problem; change line 764 of
Document.pm from
while ($attrString =~ /([^\s]+)\s*=\s*(['"])([^\2]+?)\2/g)

to

while ($attrString =~ /([^\s]+)\s*=\s*(['"])([^\2]*?)\2/g)

All that was required was to change a + to a *