added checkbox for extra debug-messages for the first installtion and API updates

This commit is contained in:
Ralf Becker 2004-07-21 13:27:25 +00:00
parent de506124a3
commit 28b38e63ff
2 changed files with 6 additions and 3 deletions

View File

@ -209,7 +209,8 @@
$setup_tpl->set_var('dbexists',lang('Your database is working, but you dont have any applications installed'));
$setup_tpl->set_var('install',lang('Install'));
$setup_tpl->set_var('proceed',lang('We can proceed'));
$setup_tpl->set_var('coreapps',lang('all core tables and the admin and preferences applications'));
$setup_tpl->set_var('coreapps',lang('all applications'));
$setup_tpl->set_var('lang_debug',lang('enable for extra debug-messages'));
$setup_tpl->parse('V_db_stage_3','B_db_stage_3');
$db_filled_block = $setup_tpl->get_var('V_db_stage_3');
$setup_tpl->set_var('V_db_filled_block',$db_filled_block);
@ -263,11 +264,11 @@
case 'new':
/* process all apps and langs(last param True), excluding apps with the no_mass_update flag set. */
$setup_info = $GLOBALS['phpgw_setup']->detection->upgrade_exclude($setup_info);
$setup_info = $GLOBALS['phpgw_setup']->process->pass($setup_info,'new',$GLOBALS['DEBUG'],True);
$setup_info = $GLOBALS['phpgw_setup']->process->pass($setup_info,'new',$_REQUEST['debug'],True);
$GLOBALS['phpgw_info']['setup']['currentver']['phpgwapi'] = 'oldversion';
break;
case 'oldversion':
$setup_info = $GLOBALS['phpgw_setup']->process->pass($setup_info,'upgrade',$GLOBALS['DEBUG']);
$setup_info = $GLOBALS['phpgw_setup']->process->pass($setup_info,'upgrade',$_REQUEST['debug']);
$GLOBALS['phpgw_info']['setup']['currentver']['phpgwapi'] = 'oldversion';
break;
}

View File

@ -54,6 +54,7 @@
{dbexists}<br>
<input type="hidden" name="action" value="Install">
<input type="submit" name="label" value="{install}"> {coreapps}
<br><input type="checkbox" name="debug" value="1"> {lang_debug}
</form>
</td>
</tr>
@ -75,6 +76,7 @@
<input type="hidden" name="useglobalconfigsettings">
<input type="hidden" name="action" value="Upgrade">
<input type="submit" name="label" value="{upgrade}"><br>
<input type="checkbox" name="debug" value="1"> {lang_debug}<br>
</form>
<form method="POST" action="index.php">