Changeset 223

Show
Ignore:
Timestamp:
2007-03-23 21:18:49 (22 months ago)
Author:
fredck
Message:

Fixed #290 : Simple fix in a regex.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/internals/fckregexlib.js

    r217 r223  
    7878// them. We have to do all in one, otherwhise we will have problems with URLs 
    7979// like "thumbnail.php?src=someimage.jpg" (SF-BUG 1554141). 
    80 ProtectUrlsImg  : /<img(?=\s).*?\ssrc=((?:("|').*?\2)|(?:[^"'][^ >]+))/gi , 
    81 ProtectUrlsA    : /<a(?=\s).*?\shref=((?:("|').*?\2)|(?:[^"'][^ >]+))/gi , 
     80ProtectUrlsImg  : /<img(?=\s).*?\ssrc=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi , 
     81ProtectUrlsA    : /<a(?=\s).*?\shref=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi , 
    8282 
    8383Html4DocType    : /HTML 4\.0 Transitional/i ,