diff --git a/cleanup.php b/cleanup.php index fa791e68ac22d84f9460d333f749e0e60481528b..da3c5cb57778cce22a733522d1188f821124809a 100644 --- a/cleanup.php +++ b/cleanup.php @@ -107,6 +107,7 @@ echo "✪"; ?>
+ " type="hidden"> " type="hidden"> diff --git a/db/config.php.example b/db/config.php.example index 4c40d2db49c8dfcf2e92391e2e53b6cf1ed0e1d1..5b9ef701c14d3ff924d69f62a3b27547b1f2a890 100644 --- a/db/config.php.example +++ b/db/config.php.example @@ -12,7 +12,7 @@ $pgpass=''; $pgdb=''; //admin email for forms $adminemail = ''; -//admin key for admin ratings +//admin key for deleting pods, set this as a cookie on your own $adminkey = ''; //mailchimp key $chimpkey = ''; diff --git a/db/kill.php b/db/kill.php index 3ec901698a8adc383d234c14827fec057ec3be58..a5073dbc5d69267b2c4ea1ad32e9f4b82d0da496 100644 --- a/db/kill.php +++ b/db/kill.php @@ -32,7 +32,7 @@ echo "admin key fail";die; if ($row["email"]) { $to = $row["email"]; $subject = "Pod deleted from poduptime "; - $message = "Pod " . $_POST["domain"] . " was deleted from podupti.me as it was dead on the list. Feel free to add back at any time. \n\n"; + $message = "Pod " . $_POST["domain"] . " was deleted from podupti.me as it was dead on the list. " . $_POST["comments"] . " Feel free to add back at any time. \n\n"; $headers = "From: support@diasp.org\r\nCc:support@diasp.org,". $row["email"] ."\r\n"; @mail( $to, $subject, $message, $headers ); }