diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-04-02 18:54:59 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-04-02 18:54:59 +0000 |
| commit | 9e0b5b08e0f3afa7ff8655a1d3b8647c24ae83b2 (patch) | |
| tree | 4f117ce29d6f169912299b24573d16ae06e725b9 /BitInstaller.php | |
| parent | 340d59473bb12dbd6e2a9d0699bbec014356d6a8 (diff) | |
| download | install-9e0b5b08e0f3afa7ff8655a1d3b8647c24ae83b2.tar.gz install-9e0b5b08e0f3afa7ff8655a1d3b8647c24ae83b2.tar.bz2 install-9e0b5b08e0f3afa7ff8655a1d3b8647c24ae83b2.zip | |
Massive changes to themes layout engine:
- merged 3 tables into 1 and removed user-specific layout contol.
- moved all layout related code to themes/BitThemes.php.
- cleaned up module parameter assignment to module php and tpl files.
- improved layout of layout page by enabling all option editing at once.
- removed limitation that every module can only be assigned once
- more changes, but i can't remember all just now.
Diffstat (limited to 'BitInstaller.php')
| -rw-r--r-- | BitInstaller.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/BitInstaller.php b/BitInstaller.php index 99c78a0..9b3a005 100644 --- a/BitInstaller.php +++ b/BitInstaller.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.25 2007/03/01 15:11:44 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.26 2007/04/02 18:54:59 squareing Exp $ * @package install */ @@ -153,8 +153,7 @@ class BitInstaller extends BitSystem { foreach( $alter[$tableName] as $from => $flds ) { if (is_string($flds)) { $sql = $dict->ChangeTableSQL( $completeTableName, $flds ); - } - else { + } else { $sql = $dict->ChangeTableSQL( $completeTableName, array($flds) ); } if( $sql && ($dict->ExecuteSQLArray( $sql ) > 0 ) ) { |
