diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-03-02 08:50:51 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-03-02 08:50:51 +0000 |
| commit | e645535e09673032a2f2f5028cd31a9773ac5aa0 (patch) | |
| tree | 13331e0bfab9bb5495029f528c3f9df206a5b120 /install_packages.php | |
| parent | 47b52b0646f7e9bc47a7657551f0f2405466ca14 (diff) | |
| download | install-e645535e09673032a2f2f5028cd31a9773ac5aa0.tar.gz install-e645535e09673032a2f2f5028cd31a9773ac5aa0.tar.bz2 install-e645535e09673032a2f2f5028cd31a9773ac5aa0.zip | |
use correct log message
Diffstat (limited to 'install_packages.php')
| -rw-r--r-- | install_packages.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/install_packages.php b/install_packages.php index dff7cb8..85147be 100644 --- a/install_packages.php +++ b/install_packages.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/install_packages.php,v 1.49 2007/02/05 11:14:32 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/install_packages.php,v 1.50 2007/03/02 08:50:51 squareing Exp $ * @package install * @subpackage functions */ @@ -398,16 +398,16 @@ if( !empty( $_REQUEST['cancel'] ) ) { $logHash['action_log'] = array( 'user_id' => ROOT_USER_ID, 'title' => 'System Installation', - 'log_message' => 'Packages were installed and bitweaver is ready for use.', + 'log_message' => 'Packages were successfully installed and bitweaver is ready for use.', ); if( empty( $_SESSION['first_install'] ) ) { $list = ''; - foreach( $packageList as $method ) { - $list .= implode( ", ", $method ); + foreach( $packageList as $pkg ) { + $list .= implode( ", ", $pkg ); } - $logHash['action_log']['title'] = "Package installation"; - $logHash['action_log']['log_message'] = "The following package(s) were installed: $list"; + $logHash['action_log']['title'] = "Package {$method}"; + $logHash['action_log']['log_message'] = "The following package(s) were {$method}ed: $list"; } else { $gBitSystem->setConfig( 'liberty_action_log', 'y' ); } |
