mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
fix PHP Warning with non-stock InfoLog types
This commit is contained in:
parent
6db82fbbf2
commit
1a58c0ba08
@ -825,8 +825,8 @@ class infolog_bo
|
|||||||
{
|
{
|
||||||
$values['info_percent'] = 0;
|
$values['info_percent'] = 0;
|
||||||
}
|
}
|
||||||
else if (
|
else if (($values['info_status'] != 'archive' && $values['info_status'] != 'cancelled' &&
|
||||||
($values['info_status'] != 'archive' && $values['info_status'] != 'cancelled' && in_array($values['info_status'], $this->stock_status[$values['info_type']])) &&
|
isset($this->stock_status[$values['info_type']]) && in_array($values['info_status'], $this->stock_status[$values['info_type']])) &&
|
||||||
((int)$values['info_percent'] == 100 || $values['info_percent'] == 0))
|
((int)$values['info_percent'] == 100 || $values['info_percent'] == 0))
|
||||||
{
|
{
|
||||||
// We change percent to match status, not status to match percent
|
// We change percent to match status, not status to match percent
|
||||||
|
Loading…
Reference in New Issue
Block a user