Doh forgot the ";" at the end of echo

这个提交包含在:
Peter Goodhall 2020-09-21 17:45:12 +01:00 提交者 GitHub
父节点 235c977040
当前提交 f3e927317c
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -842,18 +842,18 @@ class Lotw extends CI_Controller {
*/
function lotw_usercheck($callsign) {
$f = fopen('./updates/lotw_users.csv', "r");
$result = false;
while ($row = fgetcsv($f)) {
if ($row[0] == strtoupper($callsign)) {
$result = $row[0];
echo "Found";
break;
} else {
echo "Not Found"
break;
}
}
fclose($f);
$result = false;
while ($row = fgetcsv($f)) {
if ($row[0] == strtoupper($callsign)) {
$result = $row[0];
echo "Found";
break;
} else {
echo "Not Found";
break;
}
}
fclose($f);
}
function signlog($sign_key, $string) {