forked from extern/egroupware
Thank you to Raphael and Vinicius from Thyamad/Brazil which fix the broken update for Debian Woody. After a change between 003 and 005 it was NOT longer possible to update a Woody eGW installation. Sometimes it need only a good will to fix a problem
This commit is contained in:
parent
26ca4a40bf
commit
35010c30bb
@ -714,7 +714,7 @@
|
||||
}
|
||||
// is the next update the one we need?
|
||||
if ($success && $test[$x+1] != $success &&
|
||||
($num = array_search($success,$test)) !== False)
|
||||
($num = array_search($success,$test)) !== False && $num !== null)
|
||||
{
|
||||
// do we have the needed update somewhere else in the row?
|
||||
// if yes, position the array-pointer just before that update and continue
|
||||
@ -744,7 +744,7 @@
|
||||
|
||||
// is the next update the one we need?
|
||||
if ($success && $test[$x+1] != $success &&
|
||||
($num = array_search($success,$test)) !== False)
|
||||
($num = array_search($success,$test)) !== False && $num !== null)
|
||||
{
|
||||
// do we have the needed update somewhere else in the row?
|
||||
// if yes, position the array-pointer just before that update and continue
|
||||
|
Loading…
Reference in New Issue
Block a user