1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 07:50:23 +01:00

Isnt set if first write

This commit is contained in:
8chan 2014-11-22 00:15:32 -08:00
parent 7d11c7a884
commit ef0ab8bb00

View File

@ -421,7 +421,7 @@ EOT;
|| $_config['captcha']['extra'] != $config['captcha']['extra'] || $_config['captcha']['extra'] != $config['captcha']['extra']
|| $_config['blotter'] != $config['blotter'] || $_config['blotter'] != $config['blotter']
|| $_config['field_disable_name'] != $config['field_disable_name'] || $_config['field_disable_name'] != $config['field_disable_name']
|| $_config['show_sages'] != $config['show_sages']) { || $_config['show_sages'] != (isset($config['show_sages']) && $config['show_sages'])) {
buildIndex(); buildIndex();
$query = query(sprintf("SELECT `id` FROM ``posts_%s`` WHERE `thread` IS NULL", $b)) or error(db_error()); $query = query(sprintf("SELECT `id` FROM ``posts_%s`` WHERE `thread` IS NULL", $b)) or error(db_error());
while ($post = $query->fetch(PDO::FETCH_ASSOC)) { while ($post = $query->fetch(PDO::FETCH_ASSOC)) {