summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2012-05-06 18:33:32 -0400
committerspiderr <spider@viovio.com>2012-05-06 18:33:32 -0400
commit2bbb1b6157c401731b22f03104ebb060a9ef318c (patch)
tree182b71a97e3f87e9e93bac124f40530bed37a561
parent1f0e5eca82f7489d892a4e2b64fc95a01db789bd (diff)
downloadnexus-2bbb1b6157c401731b22f03104ebb060a9ef318c.tar.gz
nexus-2bbb1b6157c401731b22f03104ebb060a9ef318c.tar.bz2
nexus-2bbb1b6157c401731b22f03104ebb060a9ef318c.zip
replace all PHP4 style calls to LibertySystem base constructors with parent::__construct()
-rw-r--r--NexusSystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/NexusSystem.php b/NexusSystem.php
index e7dda67..646de91 100644
--- a/NexusSystem.php
+++ b/NexusSystem.php
@@ -37,7 +37,7 @@ class NexusSystem extends LibertySystem {
$this->mSystem = NEXUS_PKG_NAME;
$this->mPluginPath = NEXUS_PKG_PATH."plugins/";
- LibertySystem::LibertySystem( FALSE );
+ parent::__construct( FALSE );
}
}
?>