Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: file_verification.php 5462 2011-05-15 16:36:36Z ralgith $
| * $Id$
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 95 | Zeile 95 |
---|
break; }
|
break; }
|
$table->construct_cell("<strong><span style=\"color: {$color};\">".substr($file['path'], 2)."</span></strong>");
| $table->construct_cell("<strong><span style=\"color: {$color};\">".htmlspecialchars_uni(substr($file['path'], 2))."</span></strong>");
|
$table->construct_cell("<strong><span style=\"color: {$color};\">{$file['status']}</span></strong>", array("class" => "align_center")); $table->construct_row(); }
|
$table->construct_cell("<strong><span style=\"color: {$color};\">{$file['status']}</span></strong>", array("class" => "align_center")); $table->construct_row(); }
|
| $no_errors = false;
|
if($table->num_rows() == 0)
|
if($table->num_rows() == 0)
|
{
| { $no_errors = true;
|
$table->construct_cell($lang->no_corrupt_files_found, array('colspan' => 3)); $table->construct_row(); }
|
$table->construct_cell($lang->no_corrupt_files_found, array('colspan' => 3)); $table->construct_row(); }
|
$table->output($lang->file_verification.": ".$lang->found_problems);
| if($no_errors) { $table->output($lang->file_verification.": ".$lang->no_problems_found); } else { $table->output($lang->file_verification.": ".$lang->found_problems); }
|
$page->output_footer(); exit;
| $page->output_footer(); exit;
|