1
Hi
I saw an error in my website when activating mode debug:
Desconocido: Function eregi() is deprecated en el archivo /modules/multiMenu/blocks/block.php y línea 22
Desconocido: Function eregi() is deprecated en el archivo /modules/multiMenu/blocks/block.php y línea 23
Solved:
Go and open the file: block.php
Line 22 - 23
(eregi("Google", getenv("HTTP_USER_AGENT"))) ||
(eregi("Slurp", getenv("HTTP_USER_AGENT"))) ||
and change values:
eregi for
preg_matchbe so
(preg_match("/Google/", getenv("HTTP_USER_AGENT"))) ||
(preg_match("/Slurp/", getenv("HTTP_USER_AGENT"))) ||
I hope the help
Jesus Romero - Chino