When making the ajax call for the live holdings info, the hardcoded path requires clean urls. If clean urls are not enabled, a 404 results.
When making the ajax call for the live holdings info, the hardcoded path requires clean urls. If clean urls are not enabled, a 404 results.
Comments
Comment #1
janusman commentedThis patch fixes things... will post to DEV soon.
Index: millennium.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/millennium/Attic/millennium.js,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 millennium.js
--- millennium.js 16 Apr 2008 22:31:20 -0000 1.1.2.1
+++ millennium.js 30 Apr 2008 20:15:04 -0000
@@ -18,7 +18,7 @@
/**
* URL to get information from. If you go here in your browser you get plain HTML depending on the nid argument. This URL is defined in the module under millennium_menu()
*/
- var url = "/millennium_ajax?nid=" + nid;
+ var url = "?q=millennium_ajax&nid=" + nid;
// Show 'loading' message.
//$("#"+id).hide(); // Hide
Comment #2
janusman commentedFixed in DEV
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.