AutoMOD rocks. I installed my first phpBB about 5 years ago, so I appreciate what you've accomplished.
So with my brand spanking new board, everything easily and perfectly installs until this little thing.
Code: Select all
File edits
includes/ucp/ucp_register.php
***
(I deleted successful finds that were here)
***
Find
'S_CONFIRM_CODE' => ($config['enable_confirm']) ? true : false,
Add After
'S_ABQ_CODE' => ($config['enable_abquestion'] == 1) ? true : false,
The Find specified by the MOD could not be found
So I look at the file and the closest thing I could find is the only statement with the text
Code: Select all
true : false
Code: Select all
'S_CONFIRM_REFRESH' => ($config['enable_confirm'] && $config['confirm_refresh']) ? true : false,
which is grouped with other statements under
Code: Select all
$template->assign_vars(array(
So I went ahead and added
Code: Select all
'S_ABQ_CODE' => ($config['enable_abquestion'] == 1) ? true : false,
after it.
I'm guessing this will work fine, and will let you know the results after a few days or so.