mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?
|
|
authorize();
|
|
|
|
$CollageID = $_POST['collageid'];
|
|
if(!is_number($CollageID)) { error(0); }
|
|
|
|
$DB->query("SELECT UserID, CategoryID FROM collages WHERE ID='$CollageID'");
|
|
list($UserID, $CategoryID) = $DB->next_record();
|
|
if($CategoryID == 0 && $UserID!=$LoggedUser['ID'] && !check_perms('site_collages_delete')) { error(403); }
|
|
|
|
$DB->query("SELECT ID,Deleted FROM collages WHERE Name='".db_string($_POST['name'])."' AND ID!='$CollageID' LIMIT 1");
|
|
if($DB->record_count()) {
|
|
list($ID, $Deleted) = $DB->next_record();
|
|
if($Deleted) {
|
|
$Err = 'A collage with that name already exists but needs to be recovered, please <a href="staffpm.php">contact</a> the staff team!';
|
|
} else {
|
|
$Err = "A collage with that name already exists: <a href=\"/collages.php?id=$ID\">$ID</a>.";
|
|
}
|
|
}
|
|
|
|
$TagList = explode(',',$_POST['tags']);
|
|
foreach($TagList as $ID=>$Tag) {
|
|
$TagList[$ID] = sanitize_tag($Tag);
|
|
}
|
|
$TagList = implode(' ',$TagList);
|
|
|
|
$DB->query("UPDATE collages SET Description='".db_string($_POST['description'])."', TagList='$TagList' WHERE ID='$CollageID'");
|
|
|
|
if (check_perms('site_collages_delete')) {
|
|
$DB->query("UPDATE collages SET Name='".db_string($_POST['name'])."' WHERE ID='$CollageID'");
|
|
}
|
|
|
|
if(!empty($_POST['category']) && !empty($CollageCats[$_POST['category']]) && $_POST['category']!=$CategoryID && $_POST['category']!=0) {
|
|
$DB->query("UPDATE collages SET CategoryID='".db_string($_POST['category'])."' WHERE ID='$CollageID'");
|
|
}
|
|
|
|
$Cache->delete_value('collage_'.$CollageID);
|
|
header('Location: collages.php?id='.$CollageID);
|
|
?>
|