22 lines
720 B
PHP
22 lines
720 B
PHP
<?PHP
|
|
|
|
if (eregi("wiki_buttons.php", $_SERVER['SCRIPT_NAME'])) {
|
|
Header("Location: index.php"); die();
|
|
}
|
|
|
|
?>
|
|
|
|
<div>
|
|
|
|
<form method="post" action="wiki_validate_X.php" style="display: inline;">
|
|
<input type="hidden" name="validate[]" value="<? echo($row[edit_id]); ?>" />
|
|
<input type="submit" value="Validate This Edit" class="btn" onclick="return confirm('Are you sure you want to VALIDATE this race?');" />
|
|
</form>
|
|
|
|
<form method="post" action="wiki_validate_X.php" style="display: inline;">
|
|
<input type="hidden" name="delete[]" value="<? echo($row[edit_id]); ?>" />
|
|
<input type="submit" value="Delete This Edit" class="btn" onclick="return confirm('Are you sure you want to DELETE this race?');" />
|
|
</form>
|
|
|
|
</div>
|