diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-23 17:05:03 -0500 |
---|---|---|
committer | Unknown Bliss <m@michaelcullum.com> | 2012-09-01 15:05:30 +0100 |
commit | 2273ae2b34071160ff930ca8d49326b8dd308899 (patch) | |
tree | b6adadb73d0617ea2bc738f8d3426ca334927dfc /phpBB/includes | |
parent | 9c0cd2693fd61c9528aa5fcbc3dff9de73515ebe (diff) | |
download | forums-2273ae2b34071160ff930ca8d49326b8dd308899.tar forums-2273ae2b34071160ff930ca8d49326b8dd308899.tar.gz forums-2273ae2b34071160ff930ca8d49326b8dd308899.tar.bz2 forums-2273ae2b34071160ff930ca8d49326b8dd308899.tar.xz forums-2273ae2b34071160ff930ca8d49326b8dd308899.zip |
[ticket/10631] Remove references to delete extension
PHPBB3-10631
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_extensions.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php index ce32640c33..0e1d5c88a8 100644 --- a/phpBB/includes/acp/acp_extensions.php +++ b/phpBB/includes/acp/acp_extensions.php @@ -139,19 +139,6 @@ class acp_extensions )); break; - /*case 'delete_pre': - $this->tpl_name = 'acp_ext_delete'; - - $template->assign_vars(array( - 'PRE' => true, - 'U_DELETE' => $this->u_action . '&action=delete&ext_name=' . $ext_name, - )); - break; - - case 'delete': - $this->tpl_name = 'acp_ext_delete'; - break;*/ - case 'details': // Output it to the template $md_manager->output_template_data(); @@ -202,7 +189,6 @@ class acp_extensions 'U_DETAILS' => $this->u_action . '&action=details&ext_name=' . $name, 'U_PURGE' => $this->u_action . '&action=purge_pre&ext_name=' . $name, - //'U_DELETE' => $this->u_action . '&action=delete_pre&ext_name=' . $name, 'U_ENABLE' => $this->u_action . '&action=enable_pre&ext_name=' . $name, )); } @@ -227,7 +213,6 @@ class acp_extensions 'EXT_NAME' => $md_manager->get_metadata('display-name'), 'U_DETAILS' => $this->u_action . '&action=details&ext_name=' . $name, - //'U_DELETE' => $this->u_action . '&action=delete_pre&ext_name=' . $name, 'U_ENABLE' => $this->u_action . '&action=enable_pre&ext_name=' . $name, )); } |