plugins/admin/UserManager.php
changeset 1089 16a1e8626dd9
parent 1086 6a59951b70e4
child 1099 73abd46f5148
--- a/plugins/admin/UserManager.php	Fri Aug 21 13:48:48 2009 -0400
+++ b/plugins/admin/UserManager.php	Fri Aug 21 13:49:45 2009 -0400
@@ -59,6 +59,24 @@
       if ( !$q )
         $db->_die();
       echo '<div class="info-box">' . $lang->get('acpum_msg_delete_success') . '</div>';
+      
+      // deleting own account?
+      if ( $user_id === $session->user_id )
+      {
+        // cute little hack to boot them out of the admin panel
+        echo '<script type="text/javascript">
+          addOnloadHook(function()
+          {
+            setTimeout(function()
+            {
+              eraseCookie("sid");
+              ENANO_SID = false;
+              auth_level = USER_LEVEL_MEMBER;
+              window.location = makeUrlNS("Special", "Login");
+            }, 3000);
+          });
+        </script>';
+      }
     }
     else
     {
@@ -264,7 +282,7 @@
       }
     }
     
-    if ( count($errors) > 0 || $avatar_post_fail )
+    if ( count($errors) > 0 || @$avatar_post_fail )
     {
       if ( count($errors) > 0 )
       {