Fix capcodes in PHP7.2. Close #299

This commit is contained in:
Fredrick Brennan 2018-07-27 20:08:03 +08:00
parent 41cfd500de
commit ac971f36d5
2 changed files with 3 additions and 3 deletions

View File

@ -1074,7 +1074,7 @@ function post(array $post) {
}
if ($post['mod'] && isset($post['capcode']) && $post['capcode']) {
$query->bindValue(':capcode', $post['capcode'], PDO::PARAM_INT);
$query->bindValue(':capcode', $post['capcode'], PDO::PARAM_STR);
} else {
$query->bindValue(':capcode', null, PDO::PARAM_NULL);
}

View File

@ -212,8 +212,8 @@ function check_login($prompt = false) {
}
$mod = array(
'id' => $user['id'],
'type' => $user['type'],
'id' => (int)$user['id'],
'type' => (int)$user['type'],
'username' => $cookie[0],
'boards' => explode(',', $user['boards'])
);