1
JesusRomero
Function eregi() is deprecated - SOLVED

Hi

I saw an error in my website when activating mode debug:

le="color: #000000"><?php 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
le="color: #000000"><?php (eregi("Google", getenv("HTTP_USER_AGENT"))) || (eregi("Slurp", getenv("HTTP_USER_AGENT"))) ||


and change values: eregi for preg_match

be so
le="color: #000000"><?php (preg_match("/Google/", getenv("HTTP_USER_AGENT"))) || (preg_match("/Slurp/", getenv("HTTP_USER_AGENT"))) ||


I hope the help

Jesus Romero - Chino