Is there more to be done?
The following code in Parser.php starting at line 165 has a problem. The 'else' needs a left brace following it. But even fixing that there are execution errors.--Nick Pisarro
$doesexist = false ; if ( $doesexist ) { $sql = "SELECT l_from FROM links WHERE l_to={$id}" ; } else $sql = "SELECT cur_title,cur_namespace FROM cur,brokenlinks WHERE bl_to={$id} AND bl_from=cur_id" ; }
$res = wfQuery ( $sql, DB_READ ) ;