diff options
| author | Lester Caine <lester@lsces.co.uk> | 2008-11-25 19:40:05 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2008-11-25 19:40:05 +0000 |
| commit | 02210a175858e9fd57717a7963dc1efe1d893c07 (patch) | |
| tree | 64a7effd702765d3e468d526d85ed53e865e2e2f /BitInstaller.php | |
| parent | 58833c32a998289077e809e9ab4afbc36d69c056 (diff) | |
| download | install-02210a175858e9fd57717a7963dc1efe1d893c07.tar.gz install-02210a175858e9fd57717a7963dc1efe1d893c07.tar.bz2 install-02210a175858e9fd57717a7963dc1efe1d893c07.zip | |
Prevent leak of $sql to next pass
Diffstat (limited to 'BitInstaller.php')
| -rw-r--r-- | BitInstaller.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BitInstaller.php b/BitInstaller.php index e099863..b5c2756 100644 --- a/BitInstaller.php +++ b/BitInstaller.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.49 2008/11/16 10:29:54 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.50 2008/11/25 19:40:05 lsces Exp $ * @package install */ @@ -474,6 +474,7 @@ class BitInstaller extends BitSystem { break; } } + if( !empty( $sql ) ) $sql = null; break; case 'QUERY': uksort( $step, 'upgrade_query_sort' ); |
