includes/pageutils.php
changeset 323 58fa63f7f23b
parent 318 eec2dfd2f0a3
--- a/includes/pageutils.php	Sun Jan 18 18:09:55 2009 -0500
+++ b/includes/pageutils.php	Sun Jan 18 18:10:21 2009 -0500
@@ -1451,6 +1451,8 @@
     if(!$e) $db->_die('The page entry could not be deleted.');
     $e = $db->sql_query('DELETE FROM ' . table_prefix.'files WHERE page_id=\'' . $page_id . '\'');
     if(!$e) $db->_die('The file entry could not be deleted.');
+    $e = $db->sql_query('DELETE FROM ' . table_prefix.'acl WHERE page_id=\'' . $page_id . '\' AND namespace=\'' . $namespace . '\'');
+    if(!$e) $db->_die('The ACL entries associated with the page could not be deleted.');
     return('This page has been deleted. Note that there is still a log of edits and actions in the database, and anyone with admin rights can raise this page from the dead unless the log is cleared. If the deleted file is an image, there may still be cached thumbnails of it in the cache/ directory, which is inaccessible to users.');
   }