summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2012-05-06 12:44:53 -0400
committerspiderr <spider@viovio.com>2012-05-06 12:44:53 -0400
commit16f72fcc98fa3f6298fc571055c1e521bd188c7c (patch)
tree5bde7c34f470a52abe0fad64300713a612802001
parentb57fde4826207608f1408e624e3f46890b44e2bf (diff)
downloadtags-16f72fcc98fa3f6298fc571055c1e521bd188c7c.tar.gz
tags-16f72fcc98fa3f6298fc571055c1e521bd188c7c.tar.bz2
tags-16f72fcc98fa3f6298fc571055c1e521bd188c7c.zip
replace all PHP4 style constructors with __construct; replace calls to base class constructors with parent::__construct()
-rw-r--r--LibertyTag.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibertyTag.php b/LibertyTag.php
index fb2a80a..1247ac6 100644
--- a/LibertyTag.php
+++ b/LibertyTag.php
@@ -19,8 +19,8 @@ require_once( KERNEL_PKG_PATH.'BitBase.php' );
class LibertyTag extends LibertyBase {
var $mContentId;
- function LibertyTag( $pContentId=NULL ) {
- LibertyBase::LibertyBase();
+ function __construct( $pContentId=NULL ) {
+ parent::__construct();
$this->mContentId = $pContentId;
}