From 608658ce2cc92f53bbe98f535a5501dc30bb637f Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Fri, 15 Jan 2016 01:53:35 +0000 Subject: [PATCH] Fix typo --- includes/Echo.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Echo.php b/includes/Echo.php index e518510..3f2bda7 100755 --- a/includes/Echo.php +++ b/includes/Echo.php @@ -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; } @@ -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; }