mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
Fix for apps showing post-install dependency failure even though they are not installed.
This commit is contained in:
parent
10ab662e37
commit
09201c7ecb
@ -188,7 +188,10 @@
|
||||
/* Only set this if it has not already failed to upgrade - Milosch */
|
||||
if($setup_info[$key]['status'] != 'F')//&& $setup_info[$key]['status'] != 'C')
|
||||
{
|
||||
if($setup_info[$key]['status'] == 'C')
|
||||
/* Added check for status U - uninstalled apps carry this flag (upgrade from nothing == install).
|
||||
* This should fix apps showing post-install dep failure when they are not yet installed.
|
||||
*/
|
||||
if($setup_info[$key]['status'] == 'C' || $setup_info[$key]['status'] == 'U')
|
||||
{
|
||||
$setup_info[$key]['status'] = 'D';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user