mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-13 17:38:19 +01:00
check_db now takes $setup_info
This commit is contained in:
parent
2808518560
commit
27619fb663
@ -250,9 +250,9 @@
|
|||||||
return '10';
|
return '10';
|
||||||
}
|
}
|
||||||
|
|
||||||
function check_db()
|
function check_db($setup_info='')
|
||||||
{
|
{
|
||||||
$setup_info = $GLOBALS['setup_info'];
|
$setup_info = $setup_info ? $setup_info : $GLOBALS['setup_info'];
|
||||||
|
|
||||||
$GLOBALS['phpgw_setup']->db->Halt_On_Error = 'no';
|
$GLOBALS['phpgw_setup']->db->Halt_On_Error = 'no';
|
||||||
// _debug_array($setup_info);
|
// _debug_array($setup_info);
|
||||||
@ -273,7 +273,7 @@
|
|||||||
{
|
{
|
||||||
$setup_info = $this->get_db_versions($setup_info);
|
$setup_info = $this->get_db_versions($setup_info);
|
||||||
}
|
}
|
||||||
// _debug_array($setup_info);
|
// _debug_array($setup_info);
|
||||||
if (isset($setup_info['phpgwapi']['currentver']))
|
if (isset($setup_info['phpgwapi']['currentver']))
|
||||||
{
|
{
|
||||||
if(@$setup_info['phpgwapi']['currentver'] == @$setup_info['phpgwapi']['version'])
|
if(@$setup_info['phpgwapi']['currentver'] == @$setup_info['phpgwapi']['version'])
|
||||||
|
Loading…
Reference in New Issue
Block a user