Beispiel #1
0
        echo "<br />\n<strong>{$message['21']}</strong>: {$errors}</p>\n" . "<h2>{$message['16']}</h2>\n";
        if (empty($_REQUEST['errors']) || $_REQUEST['errors'] == 'along') {
            echo '<code>' . $validator->errors_source() . "</code>\n\n";
        } else {
            //errors alone
            echo '<p>' . $validator->errors_string() . "</p>\n\n";
        }
        /* no errors found in the document */
    } else {
        echo "</p><p>{$message['15']}</p>\n";
    }
    /* show repaired document */
    if (!isset($_REQUEST['repair']) || $_REQUEST['repair'] == 'full') {
        $html = strtr(nl2br(htmlspecialchars($validator->repaired_source(), ENT_QUOTES, 'UTF-8')), array('  ' => ' &nbsp;'));
        echo "\n<p>&nbsp;</p>\n<h2>{$message['17']}</h2>\n";
        echo '<div class="code"><code>' . $html . "</code></div>\n";
        /* Diff */
    } elseif ($_REQUEST['repair'] == 'diff' && ($diff = $validator->repaired_diff())) {
        $diff = strtr($diff, array('  ' => ' &nbsp;'));
        echo "\n<p>&nbsp;</p>\n<h2>{$message['11']}</h2>\n";
        echo '<div class="code"><code>' . $diff . "</code></div>\n";
    }
    /* there was some error handling the URL/file upload */
} else {
    echo "<p>{$message['13']}:<br />\n";
    echo nl2br($validator->internal_errors_string()) . "</p>\n";
}
if (isset($_GET['dump_debug'])) {
    echo '<pre>' . htmlspecialchars($validator->debug()) . '</pre>';
}
common_footer();