billmcmillin / navistax

GNU General Public License v3.0
0 stars 0 forks source link

Dead URL #1

Open tpwalsh opened 7 years ago

tpwalsh commented 7 years ago

I'm not sure if this code is maintained, or used but in linx.js line 14 there is a URL that goes to a dead site. I believe this should point back to the formURL.php that's in the same directory.

$j.ajax({

        type: "GET",
        url: "http://lh2cc.net/dse/efrierson/demos/illinois_state/formURL.php",
        data: 'idnum=' + idnum,
        success: function(json){
        console.debug("Logging JSON: "+json);
        //var data = JSON.parse(json);
        var data = json;
        processResult(data);
        },
         error: function (jqXHR, textStatus, errorThrown) {
        console.log(jqXHR.responseText);
    }

-Tim W. System Administrator Illinois State

billmcmillin commented 7 years ago

Good catch. I'm not sure if it's still in production, but I'll update it just in case. Thanks!

tpwalsh commented 7 years ago

It is, but I'm not sure for how much longer here at ISU. I caught the bug when I was looking into the code to make sure I didn't miss anything when moving it to a new server.