Prevent fetching image from non-existent qrz.com entry
这个提交包含在:
父节点
d22747de67
当前提交
0025ff8fcc
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -168,7 +168,7 @@ class Logbook extends CI_Controller {
|
|||
$return['confirmed'] = $this->confirmed_grid_before($return['callsign_qra'], $type, $band, $mode);
|
||||
|
||||
if ($this->session->userdata('user_show_profile_image')) {
|
||||
if (isset($callbook)) {
|
||||
if (isset($callbook) && isset($callbook['image'])) {
|
||||
if ($callbook['image'] == "") {
|
||||
$return['image'] = "n/a";
|
||||
} else {
|
||||
|
|
|
|||
正在加载…
在新工单中引用