diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-08-05 18:04:18 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-08-05 18:04:18 +0000 |
| commit | 044417857e805c8b2fb349a9fda2b6ac82a666d9 (patch) | |
| tree | 77b583d78a82a294caa515e968c831a1eb38dcbd /LibertySystem.php | |
| parent | 2ca69b312b41c0a5af40aab51100cf4be0d3b5f1 (diff) | |
| download | liberty-044417857e805c8b2fb349a9fda2b6ac82a666d9.tar.gz liberty-044417857e805c8b2fb349a9fda2b6ac82a666d9.tar.bz2 liberty-044417857e805c8b2fb349a9fda2b6ac82a666d9.zip | |
make sure mPlugins is an array() when not set
Diffstat (limited to 'LibertySystem.php')
| -rwxr-xr-x | LibertySystem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LibertySystem.php b/LibertySystem.php index 9125b6e..948e453 100755 --- a/LibertySystem.php +++ b/LibertySystem.php @@ -3,7 +3,7 @@ * System class for handling the liberty package * * @package liberty -* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertySystem.php,v 1.35 2006/08/01 14:26:23 squareing Exp $ +* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertySystem.php,v 1.36 2006/08/05 18:04:18 squareing Exp $ * @author spider <spider@steelsun.com> */ @@ -61,7 +61,7 @@ require_once( LIBERTY_PKG_PATH.'LibertyBase.php' ); class LibertySystem extends LibertyBase { // Hash of plugin data - var $mPlugins; + var $mPlugins = array(); // Liberty data tags var $mDataTags; |
