Ticket #142 (closed defect: fixed)
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
Note: See
TracTickets for help on using
tickets.
