diff options
| author | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:51:19 +0000 |
|---|---|---|
| committer | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:51:19 +0000 |
| commit | f2c6619fcf9489f34354efe9a9eab3dd73db773e (patch) | |
| tree | 8640b8d4ca95a864be32d785a4b31d64ef46032f /upgrade_welcome.php | |
| download | install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.gz install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.bz2 install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.zip | |
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'upgrade_welcome.php')
| -rw-r--r-- | upgrade_welcome.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/upgrade_welcome.php b/upgrade_welcome.php new file mode 100644 index 0000000..a9632ef --- /dev/null +++ b/upgrade_welcome.php @@ -0,0 +1,16 @@ +<?php + +// $Header: /cvsroot/bitweaver/_bit_install/upgrade_welcome.php,v 1.1 2005/06/19 04:51:19 bitweaver Exp $ + +// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. +// All Rights Reserved. See copyright.txt for details and a complete list of authors. +// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. + +if( preg_match( '/mysql/', $gBitDbType ) ) { + $smarty->assign( 'dbWarning', 'MySQL 4.1 or greater is required to run the installer. bitweaver will support MySQL 3.23 and above, however, the upgrade process currently uses "sub-selects" which are only supported in MySQL 4.1 and higher and all other real databases.' ); + $smarty->assign( 'warningSubmit', 'Click if MySQL 4.1 is installed' ); +} + +// assign next step in installation process +$smarty->assign( 'next_step',$step + 1 ); +?> |
