Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Jan 15, 2016
1 parent 557b2a5 commit 608658c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions includes/Echo.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ public static function onFlowThreadPosted($post) {
return true;
}

public static function onFlowThreadDeleted($post, \User $initiater) {
if ($post->userid === 0 || $post->userid === $initiater->getId()) {
public static function onFlowThreadDeleted($post, \User $initiator) {
if ($post->userid === 0 || $post->userid === $initiator->getId()) {
return true;
}

Expand All @@ -187,8 +187,8 @@ public static function onFlowThreadDeleted($post, \User $initiater) {
return true;
}

public static function onFlowThreadRecovered($post, \User $initiater) {
if ($post->userid === 0 || $post->userid === $initiater->getId()) {
public static function onFlowThreadRecovered($post, \User $initiator) {
if ($post->userid === 0 || $post->userid === $initiator->getId()) {
return true;
}

Expand Down

0 comments on commit 608658c

Please sign in to comment.