Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
Kijin Sung 2022-11-22 13:34:39 +09:00
commit fb23b7da6b
10 changed files with 128 additions and 65 deletions

View file

@ -123,7 +123,7 @@ class DB
}
catch (\PDOException $e)
{
throw new Exceptions\DBError($e->getMessage(), 0, $e);
throw new Exceptions\DBError($e->getMessage());
}
// Get the DB version.
@ -541,7 +541,7 @@ class DB
}
catch (\PDOException $e)
{
throw new Exceptions\DBError($e->getMessage(), 0, $e);
throw new Exceptions\DBError($e->getMessage());
}
if ($result_type === 'auto' && $last_index === 0 && count($result) <= 1)

View file

@ -168,8 +168,8 @@ $lang->anonymous = 'Anonymous';
$lang->last_update = 'Last Update';
$lang->last_post = 'Last Comment';
$lang->module_title = 'Board Name';
$lang->signup_date = 'Signup Date';
$lang->last_login = 'Last Signin';
$lang->signup_date = 'Sign Up Date';
$lang->last_login = 'Last Login';
$lang->first_page = 'First Page';
$lang->last_page = 'Last Page';
$lang->search_target = 'Target for Search';