From 530b7e94c5e10eb1b9aa2ea488825265b685651e Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 21 May 2006 16:54:19 +0000 Subject: - fixing a few smaller bugs/glitches - init user session in cron.php (else it can produce errors if functions expect the user object being set) - fix sql escaping for mssql/mssql_odbc git-svn-id: file:///svn/phpbb/trunk@5957 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/cron.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'phpBB/cron.php') diff --git a/phpBB/cron.php b/phpBB/cron.php index c40b0cdac5..8591803f30 100644 --- a/phpBB/cron.php +++ b/phpBB/cron.php @@ -16,6 +16,9 @@ $phpbb_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); +$user->session_begin(); +$auth->acl($user->data); + $cron_type = request_var('cron_type', ''); $use_shutdown_function = (@function_exists('register_shutdown_function')) ? true : false; -- cgit v1.2.1