Gazelle/sections/collages/recover.php
What.CD 89aa3f46e3 Adding a recommended artist will automatically NL the entire group
Finished adding [code] tag

Merging groups no longer wipes comments

Group comments are no longer lost on merge

Fixing incorrect equality

Added the freeleech_torrents() and freeleech_groups() functions, testing on vanity house addition

Implementing new freeleech functions for torrent and group editing

Implementing better.php filter for seeding

Separating staff and forum staff within staff functions
2011-07-10 08:00:06 +00:00

40 lines
1.1 KiB
PHP

<?
if (!check_perms('site_collages_recover')) {
error(403);
}
if($_POST['collage_id'] && is_number($_POST['collage_id'])) {
authorize();
$CollageID = $_POST['collage_id'];
$DB->query("SELECT Name FROM collages WHERE ID = ".$CollageID);
if($DB->record_count() == 0) {
error('Collage is completely deleted');
} else {
$DB->query("UPDATE collages SET Deleted = '0' WHERE ID=$CollageID");
$Cache->delete_value('collage_'.$CollageID);
write_log("Collage ".$CollageID." was recovered by ".$LoggedUser['Username']);
header("Location: collages.php?id=$CollageID");
}
}
show_header("Collage recovery!");
?>
<div class="thin center">
<div class="box" style="width:600px; margin:0px auto;">
<div class="head colhead">
Recover deleted collage
</div>
<div class="pad">
<form action="collages.php" method="post">
<input type="hidden" name="action" value="recover" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<strong>ID: </strong>
<input type="text" name="collage_id" size="8" />
<input value="Recover!" type="submit" />
</form>
</div>
</div>
</div>
<? show_footer();