Hello Selym,
Open the file .../admin/messages.php and search for:
$messages = Array (
Beyond this row additionally include:
"noTitle" => Array (
0 => " <font color=red><b><br /> No page title found here</b></font>. ",
1 => " No page title found here."
),
Now open the file .../admin/spider.php and search for:
$wordarray = unique_array(explode(" ", $data['content']));
Beyond this row additionally include:
if (strlen($data['title']) < 2) {
$OKtoIndex = 0;
printStandardReport('noTitle',$command_line);
}
Happy coding
Tec