Fix flatfile database mode

Resolves #217.
This commit is contained in:
Trevor Slocum 2021-05-17 22:35:23 -07:00
parent 4e6d3a76ca
commit fe2a861221
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ if (!defined('TINYIB_BOARD')) {
function accountByID($id) {
$rows = $GLOBALS['db']->selectWhere(ACCOUNTS_FILE, new SimpleWhereClause(ACCOUNT_ID, '=', $id, INTEGER_COMPARISON), 1);
if (isset($rows[0])) {
return $rows[0];
return convertAccountsToSQLStyle(array($rows[0]), true);
}
return array();
}
@ -15,7 +15,7 @@ function accountByID($id) {
function accountByUsername($username) {
$rows = $GLOBALS['db']->selectWhere(ACCOUNTS_FILE, new SimpleWhereClause(ACCOUNT_USERNAME, '=', $username, STRING_COMPARISON), 1);
if (isset($rows[0])) {
return $rows[0];
return convertAccountsToSQLStyle(array($rows[0]), true);
}
return array();
}