diff options
| author | lsces <lester@lsces.co.uk> | 2012-06-10 13:35:57 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2012-06-10 13:35:57 +0100 |
| commit | 64e34710a022c6f49c5052aee2fdd0b5b8ab9bf9 (patch) | |
| tree | 1469da9936f6e1681a94880301c1ccab10b83828 | |
| parent | 8679673f7697913a105a7e3e132d20e41eb5c058 (diff) | |
| download | contact-64e34710a022c6f49c5052aee2fdd0b5b8ab9bf9.tar.gz contact-64e34710a022c6f49c5052aee2fdd0b5b8ab9bf9.tar.bz2 contact-64e34710a022c6f49c5052aee2fdd0b5b8ab9bf9.zip | |
rework __construct()
| -rw-r--r-- | ContactType.php | 2 | ||||
| -rw-r--r-- | ContactXref.php | 2 | ||||
| -rw-r--r-- | ContactXrefType.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ContactType.php b/ContactType.php index 7e1e3f0..e332482 100644 --- a/ContactType.php +++ b/ContactType.php @@ -21,7 +21,7 @@ class ContactType extends BitBase { var $mContactType; function ContactType() { - BitBase::BitBase(); + parent::__construct(); } /** diff --git a/ContactXref.php b/ContactXref.php index 3e129d6..3c1e7f8 100644 --- a/ContactXref.php +++ b/ContactXref.php @@ -27,7 +27,7 @@ class ContactXref extends BitBase { function ContactXref( $iXrefId = NULL ) { $this->mXrefId = NULL; $this->mSource = NULL; - BitBase::BitBase(); + parent::__construct(); if( $iXrefId ) { $this->load( $iXrefId ); } diff --git a/ContactXrefType.php b/ContactXrefType.php index 978a6c6..3ca2fde 100644 --- a/ContactXrefType.php +++ b/ContactXrefType.php @@ -20,7 +20,7 @@ require_once( KERNEL_PKG_PATH."BitBase.php" ); class ContactXrefType extends BitBase { function ContactXrefType() { - BitBase::BitBase(); + parent::__construct(); } |
