Skip to content

Commit 5812410

Browse files
committed
- (Bug Fix) Fixed a couple typos that were causing PHP errors
1 parent c9e0946 commit 5812410

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

PostmasterPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function getName()
1010

1111
public function getVersion()
1212
{
13-
return '0.4.0';
13+
return '0.4.1';
1414
}
1515

1616
public function getDeveloper()

records/Postmaster_NotificationSentRecord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function getTableName()
1111
public function defineRelations()
1212
{
1313
return array(
14-
'notification' => array(static::BELONGS_TO, 'Postmater_NotificationRecord', 'required' => true, 'onDelete' => static::CASCADE),
14+
'notification' => array(static::BELONGS_TO, 'Postmaster_NotificationRecord', 'required' => true, 'onDelete' => static::CASCADE),
1515
);
1616
}
1717

records/Postmaster_ParcelSentRecord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function getTableName()
1111
public function defineRelations()
1212
{
1313
return array(
14-
'parcel' => array(static::BELONGS_TO, 'Postmater_ParcelRecord', 'required' => true, 'onDelete' => static::CASCADE),
14+
'parcel' => array(static::BELONGS_TO, 'Postmaster_ParcelRecord', 'required' => true, 'onDelete' => static::CASCADE),
1515
);
1616
}
1717

0 commit comments

Comments
 (0)