Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could You Please Help Me Find This Error.

Control Panel Fatal error: Cannot redeclare sql_sanitize() (previously declared in /sources/login/function.php on line 14

I didn't even edit this page last night. And i can't find it how to fix. Heres My Script.

<?php

if(basename($_SERVER["PHP_SELF"]) == "function.php"){
die("Errur");}

function sql_sanitize( $sCode ) {
    if (function_exists("mysql_real_escape_string" ) ) {        
        $sCode = mysql_real_escape_string( $sCode );        
    } else { 
        $sCode = addslashes( $sCode );              
    }
    return $sCode;                          
}

function shortTitle($title){
    $maxlength = 15;
    $title = $title." ";
    $title = substr($title, 0, $maxlength);
    $title = substr($title, 0, strrpos($title,' '));
    $title = $title."...";
    return $title;
}
?>
share|improve this question

closed as too localized by deceze, Stony, Sankar Ganesh, Jacky Boy, Graviton Feb 26 at 4:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

function.php is beeing included more than one time. Replace your include/require statements with include_once/require_once

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.