﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8895	File link.js has bug in release version	Jakub Ś		"**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
"	Bug	closed	Normal	CKEditor 3.6.3	General	3.6.1	fixed		
