|
|
|
Environment:
|
Moodle 1.8.2 on a Ubuntu Server 7.10 Gutsy.
The same problem with Firefox and IExplorer
Moodle 1.8.2 on a Ubuntu Server 7.10 Gutsy.
The same problem with Firefox and IExplorer
|
|
I Enabled Ajax in site and User Profile but Ajax is not working in catalan. I realized it was a problem with the language because i change to Spanish or English and Ajax starts working.
I enabled Javascript Error Console in Firefox and no errors in Spanish or English. But in catalan javascript throws the following error:
missing ; before staement
http://www.iescopernic.com/moodle................
main.portal.strings['moveleft']='Mou a l'esquerra';
It was a problem because no ' scaping character.
|
|
Description
|
I Enabled Ajax in site and User Profile but Ajax is not working in catalan. I realized it was a problem with the language because i change to Spanish or English and Ajax starts working.
I enabled Javascript Error Console in Firefox and no errors in Spanish or English. But in catalan javascript throws the following error:
missing ; before staement
http://www.iescopernic.com/moodle................
main.portal.strings['moveleft']='Mou a l'esquerra';
It was a problem because no ' scaping character. |
Show » |
|
$output .= " main.portal.strings['moveleft']='".get_string('moveleft')."';\n";
Maybe addslashes () should be applied here to get_string, in order to escape any quotes?