Cutephp
From ThaiiS Note (Wiki)
Contents |
Error
Deprecated: Function eregi() is deprecated in show_news.php on line 41
show_news.php
from
if(eregi("[a-z]", $category)){
to
if( preg_match("/[a-z]/", $category)){
shows.inc.php
if(!eregi("<\?",$member_db_line)){
to
if(!preg_match("/<\?/",$member_db_line)){
editnews.mdu
$title = ereg_replace("<[^>]*>","",$title);
to
$title = preg_replace("/<[^>]*>/","//",$title);
index
if(!eregi("$self",$HTTP_REFERER) and $HTTP_REFERER != ""){
link
function.inc.php
if(!preg_match("/<\?/",$member_db_line)){
main.mdu
list($last_archived[year], $last_archived[month]) = split("\|", $ladb_content[0] );
to
list($last_archived[year], $last_archived[month]) = explode("\|", $ladb_content[0] );
