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

janusman’s picture

Assigned: Unassigned » janusman

This 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

janusman’s picture

Status: Active » Fixed

Fixed in DEV

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.