Update logout.php
authorPatrick McGuire <insidenothing@gmail.com>
Thu, 21 May 2020 18:05:40 +0000 (14:05 -0400)
committerGitHub <noreply@github.com>
Thu, 21 May 2020 18:05:40 +0000 (14:05 -0400)
admin/logout.php

index 72192d0..194574c 100644 (file)
@@ -1,4 +1,5 @@
 <?PHP
+include_once('../slack.php');
 /* delete ALL cookies */
 foreach ( $_COOKIE as $key => $value ){
        unset($_COOKIE[$key]);
@@ -14,5 +15,6 @@ if (isset($_SERVER['HTTP_COOKIE'])) {
         setcookie($name, '', time()-1000, '/');
     }
 }
+slack_general('ADMIN: logout.php','md-petition');
 header('Location: index.php');
 ?>