catchupRelative: move to ajax.request

This commit is contained in:
Andrew Dolgov 2007-08-30 02:01:23 +01:00
parent 828f22b7eb
commit 5fe7767c0e
1 changed files with 5 additions and 4 deletions

View File

@ -1331,10 +1331,11 @@ function catchupRelativeToArticle(below) {
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" + var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
param_escape(ids_to_mark.toString()) + "&cmode=0"; param_escape(ids_to_mark.toString()) + "&cmode=0";
xmlhttp_rpc.open("GET", query, true); new Ajax.Request(query, {
xmlhttp_rpc.onreadystatechange=catchup_callback; onComplete: function(transport) {
xmlhttp_rpc.send(null); catchup_callback2(transport);
} });
} }
} }