adding ajax=true to index (no longer use an iframe), to enable drag-n-drop

This commit is contained in:
Ralf Becker 2013-08-26 08:02:19 +00:00
parent 0984527661
commit 0ae2ebad94
2 changed files with 8 additions and 1 deletions

View File

@ -17,10 +17,11 @@ if (!defined('TIMESHEET_APP'))
}
$setup_info[TIMESHEET_APP]['name'] = TIMESHEET_APP;
$setup_info[TIMESHEET_APP]['version'] = '1.8';
$setup_info[TIMESHEET_APP]['version'] = '1.9.001';
$setup_info[TIMESHEET_APP]['app_order'] = 5;
$setup_info[TIMESHEET_APP]['tables'] = array('egw_timesheet','egw_timesheet_extra');
$setup_info[TIMESHEET_APP]['enable'] = 1;
$setup_info[TIMESHEET_APP]['index'] = 'timesheet.timesheet_ui.index&ajax=true';
$setup_info[TIMESHEET_APP]['author'] =
$setup_info[TIMESHEET_APP]['maintainer'] = array(

View File

@ -73,3 +73,9 @@ function timesheet_upgrade1_7_001()
{
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.8';
}
function timesheet_upgrade1_8()
{
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.9.001';
}