Skip to content
Snippets Groups Projects
Commit 0577ffaf authored by Brett Bieber's avatar Brett Bieber
Browse files

Add in null parameters to fix IE 7 and 8.

parent 99d29312
No related branches found
No related tags found
No related merge requests found
......@@ -150,9 +150,9 @@ UNL_Search.doPeoplefinderQuery = function (val) {
this.handlePeoplefinderResults(cacheData);
} else {
var pointer = this;
WDN.get("http://peoplefinder.unl.edu/service.php?q=" + val, function(data){
WDN.get("http://peoplefinder.unl.edu/service.php?q=" + val, null, function(data, textStatus) {
pointer.peoplefinderCache.save(val, data);
pointer.handlePeoplefinderResults(data);
UNL_Search.handlePeoplefinderResults(data);
});
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment