Ticket #142 (closed defect: fixed)

Opened 8 years ago

Last modified 8 years ago

Mistake in HTMLArea._loadlang = function(context)

Reported by: gocher Owned by: gogo
Priority: high Milestone:
Component: Xinha Core Version:
Severity: major Keywords: language
Cc:

Description

//use internal files if(context != 'HTMLArea') {

var url = _editor_url+"/plugins/"+context+"/lang/"+_editor_lang+".js";

} else {

var url = _editor_url+"/lang/"+_editor_lang+".js";

}

change to

//use internal files if(context != 'HTMLArea') {

var url = _editor_url+"plugins/"+context+"/lang/"+_editor_lang+".js";

} else {

var url = _editor_url+"lang/"+_editor_lang+".js";

}

because the _editor_url ends with "/"

Change History

Changed 8 years ago by niko

  • status changed from new to closed
  • resolution set to fixed

thanks, commited in changeset:74

Note: See TracTickets for help on using tickets.