21 lines
		
	
	
		
			819 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			819 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?PHP  
 | 
						|
 | 
						|
if (eregi("wiki_buttons.php", $_SERVER['SCRIPT_NAME'])) {
 | 
						|
    Header("Location: index.php"); die();
 | 
						|
}
 | 
						|
 | 
						|
?>
 | 
						|
 | 
						|
<p>
 | 
						|
    <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 <? echo ($local_singular_lc); ?>?');" />
 | 
						|
    </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 <? echo ($local_singular_lc); ?>?');" />
 | 
						|
    </form>
 | 
						|
 | 
						|
</p>
 |