Changeset 9fc4d8797d8b9f3e36c7d5871eda34d7fa44f1f4 for templates/main.html
- Timestamp:
- 05/12/08 16:18:28 (6 months ago)
- git-parent:
- Files:
-
- templates/main.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
templates/main.html
r07ac587 r9fc4d87 21 21 22 22 function checkPMStatus() { 23 var url = './ajax';23 var url = location.href; 24 24 var params = 'module={global.module}&sess={global.sess}&action=hasNewPm'; 25 25 26 26 var myAjax = new Ajax.Request( url, { 27 27 method: 'get', … … 75 75 $('helpboxtext').innerHTML = ''; 76 76 77 var myAjax = new Ajax.Request( "./ajax", {77 var myAjax = new Ajax.Request( location.href, { 78 78 method: 'get', 79 79 parameters: 'module={global.module}&sess={global.sess}&action=getHelpText&page='+currentModule, … … 96 96 var cmd = $('adminConsoleCommand').value; 97 97 $('adminConsoleResponse').innerHTML = ''; 98 var myAjax = new Ajax.Request( "./ajax", {98 var myAjax = new Ajax.Request( location.href, { 99 99 method: 'get', 100 100 parameters: 'module=admin&sess={global.sess}&action=ajax&namedplugin=net.driftingsouls.ds2.server.modules.admin.AdminConsole&responseOnly=1&cmd='+encodeURIComponent(cmd),
