Index: l10n_client.js =================================================================== RCS file: /cvs/drupal/contributions/modules/l10n_client/l10n_client.js,v retrieving revision 1.10 diff -u -p -r1.10 l10n_client.js --- l10n_client.js 15 Apr 2009 19:10:13 -0000 1.10 +++ l10n_client.js 16 Apr 2009 04:25:08 -0000 @@ -149,9 +149,11 @@ Drupal.behaviors.l10nClient = function ( type: "POST", url: $('#l10n-client-form').attr('action'), // Send source and target strings. - data: 'source=' + Drupal.encodeURIComponent($('#l10n-client-string-editor .source-text').text()) + - '&target=' + Drupal.encodeURIComponent($('#l10n-client-form #edit-target').val()) + - '&form_token=' + Drupal.encodeURIComponent($('#l10n-client-form #edit-l10n-client-form-form-token').val()), + data: { + source: $('#l10n-client-string-editor .source-text').text(), + target: $('#l10n-client-form #edit-target').val(), + form_token: $('#l10n-client-form #edit-l10n-client-form-form-token').val(), + }, success: function (data) { // Store string in local js Drupal.l10nClient.setString(Drupal.l10nClient.selected, $('#l10n-client-form #edit-target').val());