#8895 closed Bug (fixed)
File link.js has bug in release version
Reported by: | Jakub Ś | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.6.3 |
Component: | General | Version: | 3.6.1 |
Keywords: | Cc: |
Description
Issue reported by @tszvitacs
In link.js, there is a variable definition: anchorRegex = /^#(.*)$/
In the compressed version of the file this is changed to: i = /^#(.*)$/
Further down in the file there are two for(...) loops that look like this:
for (i = 0, count = links.count(); i < count; i++ )
This, unfortunately, corrupts the regexp variable, and the dialog doesn't work correctly anymore. Changing the above lines to
for (var i = 0, count = links.count(); i < count; i++ )
and re-compressing the file resolves the problem.
Issue reproducible from CKEditor 3.6.1
Attachments (1)
Change History (4)
comment:1 Changed 13 years ago by
Status: | new → confirmed |
---|
Changed 13 years ago by
Attachment: | 8895.patch added |
---|
comment:2 Changed 13 years ago by
Milestone: | → CKEditor 3.6.3 |
---|---|
Resolution: | → fixed |
Status: | confirmed → closed |
comment:3 Changed 13 years ago by
Component: | Project : CKReleaser → General |
---|
Fixed with [7463].