diff options
| author | spiderr <spider@viovio.com> | 2012-05-06 17:12:52 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2012-05-06 17:12:52 -0400 |
| commit | 5f0047d8ffc235241d33de70a3d5929d538b685f (patch) | |
| tree | 25e17972250719526a07c5c1dbfa9f617080deb5 | |
| parent | 7925aac2a6a6eb049ee5adabb38b9f7dde7163ba (diff) | |
| download | pigeonholes-5f0047d8ffc235241d33de70a3d5929d538b685f.tar.gz pigeonholes-5f0047d8ffc235241d33de70a3d5929d538b685f.tar.bz2 pigeonholes-5f0047d8ffc235241d33de70a3d5929d538b685f.zip | |
replace all PHP4 style calls to LibertyMime base constructors with parent::__construct()
| -rw-r--r-- | Pigeonholes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Pigeonholes.php b/Pigeonholes.php index c1566b4..ce81408 100644 --- a/Pigeonholes.php +++ b/Pigeonholes.php @@ -42,7 +42,7 @@ class Pigeonholes extends LibertyMime { * @access public **/ function Pigeonholes( $pStructureId=NULL, $pContentId=NULL, $pMemberList=Null ) { - LibertyMime::LibertyMime(); + parent::__construct(); $this->registerContentType( PIGEONHOLES_CONTENT_TYPE_GUID, array( 'content_type_guid' => PIGEONHOLES_CONTENT_TYPE_GUID, 'content_name' => 'Pigeonhole', |
