Bislang habe ich diese beiden Stellen gefixt:
- Code: Alles auswählen
- #
 #-----[ OPEN ]-----
 #
 includes/functions_cps.php
 #
 #-----[ FIND ]-----
 #
 foreach ($files as $cachefile)
 {
 @unlink($cachefile);
 }
 #
 #-----[ REPLACE WITH ]-----
 #
 if ($files)
 {
 foreach ($files as $cachefile)
 {
 @unlink($cachefile);
 }
 }
 #
 #-----[ OPEN ]-----
 #
 viewtopic.php
 #
 #-----[ FIND ]-----
 #
 // Cache Posts System
 foreach (glob($phpbb_root_path.'cache/posts/*post_'.$post_id.'.gz') as $cachefile)
 {
 @unlink($cachefile);
 }
 #
 #-----[ REPLACE WITH ]-----
 #
 // Cache Posts System
 if (glob($phpbb_root_path.'cache/posts/*post_'.$post_id.'.gz'))
 {
 foreach (glob($phpbb_root_path.'cache/posts/*post_'.$post_id.'.gz') as $cachefile)
 {
 @unlink($cachefile);
 }
 }






 


