DEV Community

mvmagalhaes
mvmagalhaes

Posted on

cutenews functions.inc.php php7 error warning

Warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead in

foreach ($sql->select(array('table' => 'categories', 'where' => array("parent = $id"), 'orderby' => array('ord', 'ASC'))) as $row){
  $find = array('/{id}/i', '/{name}/i', '/{url}/i', '/{icon}/i', '/{template}/i', '/{prefix}/i', '/\[php\](.*?)\[\/php\]/ie', '/{parent}/i', '/{ord}/i')
  $repl = array($row['id'], $row['name'], $row['url'], ($row['icon'] ? '<img src="'.$row['icon'].'" alt="'.$row['icon'].'" border="0"

Top comments (0)