I'd like to add code below (from User reminder mod - http://www.phpbb.com/community/viewtopi ... &start=105) to the portal.php file, but I don't know where exactly it should be. I was told to put it before the template vars are assigned. Can anyone help me? This part of code is normally in index.php file, but now my entrance page is portal.php.
Code: Select all
// if automatic reminders is set, remind people. lets only run this once a day.
if ( $config['user_reminder_enable'] == ENABLED )
{
$check_time = gmdate('mdY',time() + (3600 * $config['board_timezone']));
if ( $config['user_reminder_last_auto_run'] < $check_time)
{
if (!function_exists('send_user_reminders'))
{
include($phpbb_root_path . 'includes/functions_user_reminder.' . $phpEx);
}
send_user_reminders();
set_config('user_reminder_last_auto_run', (int) $check_time);
}
}