Updates needed for phpwebhosting -> filemanager name change, some quotes fixes and some other misc. cleanup

This commit is contained in:
Zone
2002-09-21 05:26:43 +00:00
parent 71ec2f0197
commit 241d87cdd1
20 changed files with 373 additions and 422 deletions

View File

@ -1,6 +1,6 @@
<?php
/**************************************************************************\
* phpGroupWare - PHPWebHosting *
* phpGroupWare - Filemanager *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
@ -13,48 +13,48 @@
/* MOVED TO API
$test[] = '0.9.13.001';
function phpwebhosting_upgrade0_9_13_001()
function filemanager_upgrade0_9_13_001()
{
global $setup_info, $phpgw_setup;
$phpgw_setup->oProc->AddColumn('phpgw_vfs', 'link_directory', array ('type' => 'text'));
$phpgw_setup->oProc->AddColumn('phpgw_vfs', 'link_name', array ('type' => 'text'));
$setup_info['phpwebhosting']['currentver'] = '0.9.13.002';
$setup_info['filemanager']['currentver'] = '0.9.13.002';
return $setup_info['phpwebhosting']['currentver'];
return $setup_info['filemanager']['currentver'];
}
$test[] = '0.9.13.002';
function phpwebhosting_upgrade0_9_13_002()
function filemanager_upgrade0_9_13_002()
{
global $setup_info;
$setup_info['phpwebhosting']['currentver'] = '0.9.13.003';
$setup_info['filemanager']['currentver'] = '0.9.13.003';
return $setup_info['phpwebhosting']['currentver'];
return $setup_info['filemanager']['currentver'];
}
$test[] = '0.9.13.003';
function phpwebhosting_upgrade0_9_13_003()
function filemanager_upgrade0_9_13_003()
{
global $setup_info;
$setup_info['phpwebhosting']['currentver'] = '0.9.13.004';
$setup_info['filemanager']['currentver'] = '0.9.13.004';
return $setup_info['phpwebhosting']['currentver'];
return $setup_info['filemanager']['currentver'];
}
$test[] = '0.9.13.004';
function phpwebhosting_upgrade0_9_13_004()
function filemanager_upgrade0_9_13_004()
{
global $setup_info, $phpgw_setup;
$phpgw_setup->oProc->AddColumn('phpgw_vfs', 'version', array ('type' => 'varchar', 'precision' => 30,'nullable' => False, 'default' => '0.0.0.0'));
$setup_info['phpwebhosting']['currentver'] = '0.9.13.005';
$setup_info['filemanager']['currentver'] = '0.9.13.005';
return $setup_info['phpwebhosting']['currentver'];
return $setup_info['filemanager']['currentver'];
}
*/
?>