From 759277c8a3058c82612a96f9b920da0b529d1eff Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 3 Feb 2010 08:23:12 +0000 Subject: - Patch #565808 by Dave Reid: fixed nojs/ajax replacement. --- misc/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/ajax.js') diff --git a/misc/ajax.js b/misc/ajax.js index 1ded01ca8..016a953ce 100644 --- a/misc/ajax.js +++ b/misc/ajax.js @@ -107,7 +107,7 @@ Drupal.ajax = function (base, element, element_settings) { // Replacing 'nojs' with 'ajax' in the URL allows for an easy method to let // the server detect when it needs to degrade gracefully. - this.url = element_settings.url.replace('/nojs/', '/ajax/'); + this.url = element_settings.url.replace(/nojs/g, 'ajax'); this.wrapper = '#' + element_settings.wrapper; // If there isn't a form, jQuery.ajax() will be used instead, allowing us to -- cgit v1.2.3