1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-11 16:53:07 +01:00

disable $config['try_smarter'] on ?/rebuild

This commit is contained in:
Michael Foster 2013-09-15 04:22:27 +10:00
parent bd8c59a8fc
commit 091019ea78

View File

@ -1840,6 +1840,8 @@ function mod_rebuild() {
if (isset($_POST['rebuild'])) { if (isset($_POST['rebuild'])) {
@set_time_limit($config['mod']['rebuild_timelimit']); @set_time_limit($config['mod']['rebuild_timelimit']);
$config['try_smarter'] = false;
$log = array(); $log = array();
$boards = listBoards(); $boards = listBoards();
$rebuilt_scripts = array(); $rebuilt_scripts = array();
@ -1871,6 +1873,7 @@ function mod_rebuild() {
continue; continue;
openBoard($board['uri']); openBoard($board['uri']);
$config['try_smarter'] = false;
if (isset($_POST['rebuild_index'])) { if (isset($_POST['rebuild_index'])) {
buildIndex(); buildIndex();