mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
* Setup/EPL: do not autoinstall uninstalled EPL apps when container restarts
This commit is contained in:
parent
c74b132448
commit
6d86eefc96
@ -446,7 +446,7 @@ else
|
||||
case 'U':
|
||||
$setup_tpl->set_var('instimg','incomplete.png');
|
||||
$setup_tpl->set_var('instalt',lang('Not Completed'));
|
||||
if (!@$value['currentver'])
|
||||
if (empty($value['currentver']) || $value['currentver'] === 'uninstalled')
|
||||
{
|
||||
if ($value['tables'] && $GLOBALS['egw_setup']->detection->check_app_tables($value['name'],True))
|
||||
{
|
||||
|
@ -319,7 +319,8 @@ abstract class setup_cmd extends admin_cmd
|
||||
self::$apps_to_upgrade = self::$apps_to_install = array();
|
||||
foreach($setup_info as $app => $data)
|
||||
{
|
||||
if ($data['currentver'] && $data['version'] && $data['version'] != 'deleted' && $data['version'] != $data['currentver'])
|
||||
if ($data['currentver'] && $data['version'] && $data['version'] != 'deleted' && $data['version'] != $data['currentver'] &&
|
||||
$data['currentversion'] !== 'uninstalled')
|
||||
{
|
||||
self::$apps_to_upgrade[] = $app;
|
||||
}
|
||||
@ -366,7 +367,7 @@ abstract class setup_cmd extends admin_cmd
|
||||
$ret = array_filter(self::$apps_to_install, function($app)
|
||||
{
|
||||
global $setup_info;
|
||||
return $setup_info[$app]['autoinstall'];
|
||||
return !empty($setup_info[$app]['autoinstall']) && !isset($setup_info[$app]['currentversion']);
|
||||
});
|
||||
//error_log(__METHOD__."() apps_to_install=".array2string(self::$apps_to_install).' returning '.array2string($ret));
|
||||
return $ret;
|
||||
|
@ -62,7 +62,7 @@ class setup_detection
|
||||
/* one of these tables exists. checking for post/pre beta version */
|
||||
if($GLOBALS['egw_setup']->applications_table != 'applications')
|
||||
{
|
||||
foreach($GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->applications_table, '*', 'app_enabled != -1', __LINE__, __FILE__) as $row)
|
||||
foreach($GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->applications_table, '*', false, __LINE__, __FILE__) as $row)
|
||||
{
|
||||
$app = $row['app_name'];
|
||||
if (!isset($setup_info[$app])) // app source no longer there
|
||||
|
@ -484,7 +484,7 @@ switch($GLOBALS['egw_info']['setup']['stage']['db'])
|
||||
$to_upgrade = $to_install = array();
|
||||
foreach($setup_info as $app => $data)
|
||||
{
|
||||
if ($data['currentver'] && $data['version'] && $data['version'] != $data['currentver'])
|
||||
if (!empty($data['currentver']) && $data['currentver'] !== 'uninstalled' && $data['version'] && $data['version'] != $data['currentver'])
|
||||
{
|
||||
$to_upgrade[] = lang(!empty($data['title']) ? $data['title'] : $app);
|
||||
$setup_tpl->set_var('apps_status_img',$incomplete);
|
||||
|
Loading…
Reference in New Issue
Block a user