From: Jason Woofenden Date: Sun, 3 May 2020 20:28:15 +0000 (-0400) Subject: Fix db_get_value after mysql->mysqli upgrade X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=HEAD Fix db_get_value after mysql->mysqli upgrade --- diff --git a/db.php b/db.php index 5a9ef89..428c1bf 100644 --- a/db.php +++ b/db.php @@ -276,7 +276,7 @@ function db_get_value($table, $column, $where = '') { $result = db_send_get($table, $column, $where, $args); $value = mysqli_fetch_row($result); - if($value !== false) { + if($value !== NULL) { $value = $value[0]; }