mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
fixed maximum length for directory/filename in vfs (was 255/64 now 233/100)
This commit is contained in:
parent
5043404475
commit
9c1330d292
@ -14,7 +14,7 @@
|
|||||||
/* Basic information about this app */
|
/* Basic information about this app */
|
||||||
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
$setup_info['phpgwapi']['name'] = 'phpgwapi';
|
||||||
$setup_info['phpgwapi']['title'] = 'eGroupWare API';
|
$setup_info['phpgwapi']['title'] = 'eGroupWare API';
|
||||||
$setup_info['phpgwapi']['version'] = '1.2.003';
|
$setup_info['phpgwapi']['version'] = '1.2.004';
|
||||||
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
|
$setup_info['phpgwapi']['versions']['current_header'] = '1.28';
|
||||||
$setup_info['phpgwapi']['enable'] = 3;
|
$setup_info['phpgwapi']['enable'] = 3;
|
||||||
$setup_info['phpgwapi']['app_order'] = 1;
|
$setup_info['phpgwapi']['app_order'] = 1;
|
||||||
@ -63,3 +63,4 @@
|
|||||||
$setup_info['notifywindow']['app_order'] = 1;
|
$setup_info['notifywindow']['app_order'] = 1;
|
||||||
$setup_info['notifywindow']['tables'] = '';
|
$setup_info['notifywindow']['tables'] = '';
|
||||||
$setup_info['notifywindow']['hooks'][] = 'home';
|
$setup_info['notifywindow']['hooks'][] = 'home';
|
||||||
|
|
||||||
|
@ -327,8 +327,8 @@
|
|||||||
'vfs_deleteable' => array('type' => 'char','precision' => '1','default' => 'Y'),
|
'vfs_deleteable' => array('type' => 'char','precision' => '1','default' => 'Y'),
|
||||||
'vfs_comment' => array('type' => 'varchar','precision' => '255'),
|
'vfs_comment' => array('type' => 'varchar','precision' => '255'),
|
||||||
'vfs_app' => array('type' => 'varchar','precision' => '25'),
|
'vfs_app' => array('type' => 'varchar','precision' => '25'),
|
||||||
'vfs_directory' => array('type' => 'varchar','precision' => '255'),
|
'vfs_directory' => array('type' => 'varchar','precision' => '233'),
|
||||||
'vfs_name' => array('type' => 'varchar','precision' => '64','nullable' => False),
|
'vfs_name' => array('type' => 'varchar','precision' => '100','nullable' => False),
|
||||||
'vfs_link_directory' => array('type' => 'varchar','precision' => '255'),
|
'vfs_link_directory' => array('type' => 'varchar','precision' => '255'),
|
||||||
'vfs_link_name' => array('type' => 'varchar','precision' => '128'),
|
'vfs_link_name' => array('type' => 'varchar','precision' => '128'),
|
||||||
'vfs_version' => array('type' => 'varchar','precision' => '30','nullable' => False,'default' => '0.0.0.0'),
|
'vfs_version' => array('type' => 'varchar','precision' => '30','nullable' => False,'default' => '0.0.0.0'),
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
\**************************************************************************/
|
\**************************************************************************/
|
||||||
|
|
||||||
// $Id$
|
// $Id$
|
||||||
// $Source$
|
|
||||||
|
|
||||||
/* Include older eGroupWare update support */
|
/* Include older eGroupWare update support */
|
||||||
include('tables_update_0_9_9.inc.php');
|
include('tables_update_0_9_9.inc.php');
|
||||||
@ -1068,6 +1067,24 @@
|
|||||||
'nullable' => False
|
'nullable' => False
|
||||||
));
|
));
|
||||||
|
|
||||||
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.003';
|
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.003';
|
||||||
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$test[] = '1.2.003';
|
||||||
|
function phpgwapi_upgrade1_2_003()
|
||||||
|
{
|
||||||
|
// change lenght of dir/name from 255/64 to 233/100, as 64 was definitly to short,
|
||||||
|
// sum has to be <= 333 (1000/3) because of the mysql index restrictions
|
||||||
|
$GLOBALS['egw_setup']->oProc->AlterColumn('egw_vfs','vfs_directory',array(
|
||||||
|
'type' => 'varchar',
|
||||||
|
'precision' => '233'
|
||||||
|
));
|
||||||
|
$GLOBALS['egw_setup']->oProc->AlterColumn('egw_vfs','vfs_name',array(
|
||||||
|
'type' => 'varchar',
|
||||||
|
'precision' => '100',
|
||||||
|
'nullable' => False
|
||||||
|
));
|
||||||
|
|
||||||
|
return $GLOBALS['setup_info']['phpgwapi']['currentver'] = '1.2.004';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user