diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-05 17:56:33 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-05 17:56:33 +0000 |
| commit | e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa (patch) | |
| tree | 611a28cc169f6773d704a580c65e98f73971d3ed /phpBB/install | |
| parent | 8f765e50a39d79ff23d812fd3a88937f988a75ca (diff) | |
| download | forums-e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa.tar forums-e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa.tar.gz forums-e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa.tar.bz2 forums-e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa.tar.xz forums-e25b2c5f35c77dbe6bf0e4745b86f3036096e2fa.zip | |
- some adjustements for phpdocumentor
git-svn-id: file:///svn/phpbb/trunk@5883 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rwxr-xr-x | phpBB/install/index.php | 6 | ||||
| -rwxr-xr-x | phpBB/install/install_install.php | 4 | ||||
| -rwxr-xr-x | phpBB/install/install_main.php | 4 |
3 files changed, 13 insertions, 1 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 99bde17803..530fae7bf2 100755 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -77,6 +77,9 @@ function deregister_globals() // If we are on PHP >= 6.0.0 we do not need some code if (version_compare(phpversion(), '6.0.0-dev', '>=')) { + /** + * @ignore + */ define('STRIP', false); } else @@ -186,6 +189,7 @@ $template->set_filenames(array( $install->page_footer(); /** +* @package install */ class module { @@ -441,7 +445,7 @@ class module /** * Output an error message * If skip is true, return and continue execution, else exit - * @todo: Really should change the caption based on $skip and calling code at some point + * @todo Really should change the caption based on $skip and calling code at some point */ function error($error, $line, $file, $skip = false) { diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index bbc88fb320..7f5f4e6177 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -24,6 +24,10 @@ if (!empty($setmodules)) ); } +/** +* @package install +* Installation +*/ class install_install extends module { function install_install(&$p_master) diff --git a/phpBB/install/install_main.php b/phpBB/install/install_main.php index ce81df92db..d399c36ec1 100755 --- a/phpBB/install/install_main.php +++ b/phpBB/install/install_main.php @@ -24,6 +24,10 @@ if (!empty($setmodules)) ); } +/** +* @package install +* Main Tab - Installation +*/ class install_main extends module { function install_main(&$p_master) |
