1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/16019] Deny prosilver's uninstallation

PHPBB3-16019
This commit is contained in:
3D-I
2019-08-13 04:30:48 +02:00
parent 0a5d167441
commit 3fbdb2f345
2 changed files with 14 additions and 1 deletions

View File

@@ -289,6 +289,14 @@ class acp_styles
{
global $user, $phpbb_log;
// Don't remove prosilver, you can still deactivate it.
$sql = 'SELECT style_id
FROM ' . STYLES_TABLE . "
WHERE style_name = '" . $this->db->sql_escape('prosilver') . "'";
$result = $this->db->sql_query($sql);
$prosilver_id = (int) $this->db->sql_fetchrow($result);
$this->db->sql_freeresult($result);
$default = $this->default_style;
$uninstalled = array();
$messages = array();
@@ -296,6 +304,10 @@ class acp_styles
// Check styles list
foreach ($ids as $id)
{
if ($id == $prosilver_id)
{
trigger_error($this->user->lang['UNINSTALL_PROSILVER'] . adm_back_link($this->u_action), E_USER_WARNING);
}
if (!$id)
{
trigger_error($this->user->lang['INVALID_STYLE_ID'] . adm_back_link($this->u_action), E_USER_WARNING);