From e9e29bb55b31ddf2ad1f360fd06ca2f66b2c0b6b Mon Sep 17 00:00:00 2001 From: Casey Peel Date: Sat, 14 Sep 2024 19:07:07 +0000 Subject: [PATCH] Add missing integer dummy settings These were changed from strings to ints in 9a8be5f9e0 and we need to include all non-strings in this pre-release config. --- SETUP/check_db_schema.template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/SETUP/check_db_schema.template b/SETUP/check_db_schema.template index 3b525affd..4fc8f25cd 100755 --- a/SETUP/check_db_schema.template +++ b/SETUP/check_db_schema.template @@ -62,11 +62,16 @@ echo " _DEFAULT_CHAR_SUITES='[ \"basic-latin\" ]' _PHPMAILER_SMTP_CONFIG='[]' - # For update_phpbb_posts_text.php + # Integer values that must be filled in _FORUMS_PROJECT_WAITING_IDX=99 _FORUMS_PROJECT_AVAIL_IDX=99 _FORUMS_PROJECT_PP_IDX=99 _FORUMS_PROJECT_POSTED_IDX=99 + _FORUMS_BEGIN_SITE_IDX=99 + _FORUMS_PROJECT_DELETED_IDX=99 + _FORUMS_PROJECT_COMPLETED_IDX=99 + _FORUMS_POST_PROCESSORS_IDX=99 + _FORUMS_TEAMS_IDX=99 " > $testing_dir/config.sh echo "Getting a test copy of the '$curr_tag' code..."