sihabcse21 / php-adsense-account-library

Automatically exported from code.google.com/p/php-adsense-account-library
GNU General Public License v3.0
0 stars 0 forks source link

Replace the eregi function #11

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When i try to login the script tells me that the function eregi() is deprecated.

Then you must change the row 145 on adsense.php from

if (eregi("<a href=\"/adsense/signout\">",  $content)) {

to

if (preg_match("<a href=\"/adsense/signout\">",  $content)) {

After this change all works fine without warnings.

Original issue reported on code.google.com by francesc...@gmail.com on 22 Oct 2010 at 7:14