2022-04-25, 02:04:09
(This post was last modified: 2022-04-30, 19:24:51 by orangejuicebiscuits.)
Has anyone already made a fixed version for PHP 8? Would be very great.
For me it was only necessary to remove "&& count($translit>0)" in news_manager/inc/functions.php and to change $posts = array_slice($posts, 0, $NMRECENTPOSTS, true); in news_manager/inc/sidebar.php:18 to $posts = array_slice($posts, 0, (int)$NMRECENTPOSTS, true);
For me it was only necessary to remove "&& count($translit>0)" in news_manager/inc/functions.php and to change $posts = array_slice($posts, 0, $NMRECENTPOSTS, true); in news_manager/inc/sidebar.php:18 to $posts = array_slice($posts, 0, (int)$NMRECENTPOSTS, true);