summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2016-02-07 17:13:34 +0000
committerlsces <lester@lsces.co.uk>2016-02-07 17:13:34 +0000
commitc0e89eb4d63828415350173a8582a44cb784cfd8 (patch)
tree31a51b58e8e8dd71b6621a725daca218524247fe
parent40b8885cc2b9dac4bab78f3c49f0afeb30e95d9a (diff)
downloadinstall-c0e89eb4d63828415350173a8582a44cb784cfd8.tar.gz
install-c0e89eb4d63828415350173a8582a44cb784cfd8.tar.bz2
install-c0e89eb4d63828415350173a8582a44cb784cfd8.zip
Tidy comment blocks
-rw-r--r--get_databases_inc.php5
-rw-r--r--migrate_database.php12
-rw-r--r--upgrade.php17
3 files changed, 17 insertions, 17 deletions
diff --git a/get_databases_inc.php b/get_databases_inc.php
index 45dc6e1..22f6310 100644
--- a/get_databases_inc.php
+++ b/get_databases_inc.php
@@ -1,10 +1,9 @@
<?php
/**
- * @version $Header$
+ * check what db servers are available and display them accordingly - only seems to work with *nix
+ *
* @package install
* @subpackage functions
- *
- * check what db servers are available and display them accordingly - only seems to work with *nix
*/
$gBitDbCaseSensitivity = TRUE;
$dbtodsn = array();
diff --git a/migrate_database.php b/migrate_database.php
index ceceb99..df5767f 100644
--- a/migrate_database.php
+++ b/migrate_database.php
@@ -1,15 +1,11 @@
<?php
/**
- * @version $Header$
- * @package install
- * @subpackage upgrade
- *
- * Copyright (c) 2004 Stephan Borg, tikipro.org
- * All Rights Reserved. See below for details and a complete list of authors.
+ * Migrate database to new schema.
*
- * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
+ * @copyright 2004-15 Stephan Borg, bitweaver.org
*
- * $Id$
+ * @package install
+ * @subpackage upgrade
*/
/**
diff --git a/upgrade.php b/upgrade.php
index e9997e8..5b3ff18 100644
--- a/upgrade.php
+++ b/upgrade.php
@@ -1,13 +1,16 @@
<?php
/**
- * @version $Header$
+ * Page script - run an update process.
+ *
* @package install
* @subpackage upgrade
*/
-// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
-// All Rights Reserved. See below for details and a complete list of authors.
-// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
+/**
+ * @copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
+ * All Rights Reserved. See below for details and a complete list of authors.
+ * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
+ */
/**
* required setup
@@ -56,7 +59,9 @@ if( isset( $_REQUEST['use_innodb'] ) ) {
$_SESSION['use_innodb'] = TRUE;
}
-// finally we are ready to include the actual php file
+/**
+ * process upgrade step
+ */
include_once( 'upgrade_'.$install_file[$step]['file'].'.php' );
$install_file = set_menu( $install_file, $step );
@@ -67,4 +72,4 @@ $gBitSmarty->assign( 'section', 'Upgrade' );
$gBitSmarty->assign( 'install_file', INSTALL_PKG_PATH."templates/upgrade_".$install_file[$step]['file'].$app.".tpl" );
$gBitInstaller->in_display( $install_file[$step]['name'], INSTALL_PKG_PATH.'templates/install.tpl' );
-?>
+?> \ No newline at end of file