1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/10631] Remove references to delete extension

PHPBB3-10631
This commit is contained in:
Nathan Guse
2012-07-23 17:05:03 -05:00
committed by Unknown Bliss
parent 9c0cd2693f
commit 2273ae2b34
4 changed files with 2 additions and 50 deletions

View File

@@ -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,
));
}