Hey guys i activated the jcow mobile view and now on a desktop site i get an error 
	And here is the source mobile.hook.php
	
							
						
					Code:
	
	Warning: eregi() [function.eregi]: REG_EMPTY in /home/*****/.../on mobile.hook.php in line 18
PHP Code:
	
	
<?php
/* ############################################################ *\
 ----------------------------------------------------------------
@package    Jcow Social Networking Script.
@copyright    Copyright (C) 2009 - 2010 jcow.net.  All Rights Reserved.
@license    see http://jcow.net/license
 ----------------------------------------------------------------
\* ############################################################ */
function mobile_boot() {
    global $parr;
    if ($parr[0] == 'home' || !$parr[0]) {
        if (!$mobile_ids = get_text('mobile_ids')) {
            $mobile_ids = 'iphone,nokia,BlackBerry,HTC,Motorola,Nokia,Samsung';
        }
        $ids = explode(',',$mobile_ids);
        if (is_array($ids)) {
            foreach ($ids as $id) {
            if (eregi(trim($id),$_SERVER['HTTP_USER_AGENT'])) { //This is line 18 
                    redirect('mobile');
                }
            }
        }
    }
}


 
							
						
 
							
						
Comment