From 4f79330df551563431032704659f37cfc2fe759a Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Fri, 21 Aug 2020 17:09:48 +0100 Subject: [PATCH] Fixed error where advance search controls wasn't loading --- application/views/interface_assets/footer.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index da270af0..daa3e7db 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -115,10 +115,12 @@ $(".search-results-box").hide(); } var callsign = '' + item.COL_CALL + ''; - if item.COL_SUBMODE==null + if (item.COL_SUBMODE == null) { $('#results').append('' + item.COL_TIME_ON + '' + callsign + '' + item.COL_MODE + '' + item.COL_RST_SENT + '' + item.COL_RST_RCVD + '' + band + '' + item.COL_COUNTRY + ''); - else + } + else { $('#results').append('' + item.COL_TIME_ON + '' + callsign + '' + item.COL_SUBMODE + '' + item.COL_RST_SENT + '' + item.COL_RST_RCVD + '' + band + '' + item.COL_COUNTRY + ''); + } }); });