﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12017	Error on ckpackager.exe	tommy7m		"I've tried to compile ckeditor 4.1 with ckpackager.exe and got following error:

InternalError: missing ; before statement

After searching I solved it, and here is fix that you can use.

In file tools.js on line 1129 (method enableHtml5Elements()) find following


var els = 'abbr,article,aside,audio,bdi,canvas,data,datalist,details,figcaption,figure,footer,header,hgroup,mark,meter,nav,output,progress,section,summary,time,video'.split( ',' ),
i = els.length,
el;

and replace with:

var els = [""abbr"", ""article"", ""aside"", ""audio"", ""bdi"", ""canvas"", ""data"", ""datalist"", ""details"", ""figcaption"", ""figure"", ""footer"", ""header"", ""hgroup"", ""mark"", ""meter"", ""nav"", ""output"", ""progress"", ""section"", ""summary"", ""time"", ""video""];
var i = els.length,
el;"	Bug	closed	Normal		General	4.4.1	invalid		
