From c9ecb5dee73cacf7a805189db3f34cdc14703f45 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 25 Aug 2009 12:19:57 +0000 Subject: [PATCH] Fix style recompilation now we do not force the SID to be passed anymore. This also fixes the problems users see after updates, where styles are not always instantly updated, as well as helping style authors a lot. ;) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10056 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/style.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/style.php b/phpBB/style.php index 40d34c598c..0b4c3d0d41 100644 --- a/phpBB/style.php +++ b/phpBB/style.php @@ -92,7 +92,8 @@ if ($id) if (!$user) { $id = ($id) ? $id : $config['default_style']; - $recompile = false; +// Commented out because calls do not always include the SID anymore +// $recompile = false; $user = array('user_id' => ANONYMOUS); }