Shows full name, but only when logged in (if available)

这个提交包含在:
Jeremy Brown 2020-11-10 20:25:26 -05:00
父节点 94fe1ffe5f
当前提交 4d73a50ef6
共有 2 个文件被更改,包括 4 次插入2 次删除

查看文件

@ -73,7 +73,7 @@ class Qrz {
// Return Required Fields
$data['callsign'] = (string) $xml->Callsign->call;
$data['name'] = (string) $xml->Callsign->fname;
$data['name'] = (string) $xml->Callsign->fname . ' '. (string) $xml->Callsign->name;
$data['gridsquare'] = (string) $xml->Callsign->grid;
$data['city'] = (string) $xml->Callsign->addr2;
$data['lat'] = (string) $xml->Callsign->lat;

查看文件

@ -141,13 +141,15 @@
</tr>
<?php } ?>
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
<?php if($row->COL_NAME != null) { ?>
<?php if($row->COL_NAME != null) { ?>
<tr>
<td>Name:</td>
<td><?php echo $row->COL_NAME; ?></td>
</tr>
<?php } ?>
<?php } ?>
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
<?php if($row->COL_COMMENT != null) { ?>