From: Chad Horohoe Date: Sat, 10 Jul 2010 09:26:42 +0000 (+0000) Subject: Cleanup r69128, getStatArray() -> getStatusArray(). It's two characters, c'mon X-Git-Tag: 1.31.0-rc.0~36182 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=e8bb37ae489536d52bcee7ca5ea3a072cb97fb5e;p=lhc%2Fweb%2Fwiklou.git Cleanup r69128, getStatArray() -> getStatusArray(). It's two characters, c'mon --- diff --git a/includes/Status.php b/includes/Status.php index 08f7484c9c..b6899312f5 100644 --- a/includes/Status.php +++ b/includes/Status.php @@ -254,7 +254,7 @@ class Status { * @return Array */ function getErrorsArray() { - return $this->getStatArray( "error" ); + return $this->getStatusArray( "error" ); } /** @@ -263,7 +263,7 @@ class Status { * @return Array */ function getWarningsArray() { - return $this->getStatArray( "warning" ); + return $this->getStatusArray( "warning" ); } /** @@ -272,7 +272,7 @@ class Status { * * @return Array */ - protected function getStatArray( $type ) { + protected function getStatusArray( $type ) { $result = array(); foreach ( $this->errors as $error ) { if ( $error['type'] === $type ) {