Refer to verification code in the ui for the mangled version

This commit is contained in:
Andy Janata 2018-03-27 11:13:51 -07:00
parent 28e040aaec
commit 8211726118
2 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ cah.ajax.SuccessHandlers[cah.$.AjaxOperation.WHOIS] = function(data, req) {
cah.log.status_with_game(chatWindowId, "* <strong>Is an administrator</strong>", null, true); cah.log.status_with_game(chatWindowId, "* <strong>Is an administrator</strong>", null, true);
} }
if (data[cah.$.AjaxResponse.ID_CODE] != "") { if (data[cah.$.AjaxResponse.ID_CODE] != "") {
cah.log.status_with_game(chatWindowId, "* Identification code: " cah.log.status_with_game(chatWindowId, "* Verification code: "
+ data[cah.$.AjaxResponse.ID_CODE]); + data[cah.$.AjaxResponse.ID_CODE]);
} }
if (data[cah.$.AjaxResponse.IP_ADDRESS]) { if (data[cah.$.AjaxResponse.IP_ADDRESS]) {

View File

@ -221,7 +221,7 @@ cah.log.debug = function(text, opt_obj) {
*/ */
cah.log.getTitleForIdCode = function(idcode) { cah.log.getTitleForIdCode = function(idcode) {
if (idcode) { if (idcode) {
return "Identification code: " + idcode; return "Verification code: " + idcode;
} else { } else {
return null; return null;
} }