Merge "Use pg_result_error, not pg_last_error, as the latter gives false negatives."
[lhc/web/wiklou.git] / includes / password / MWOldPassword.php
index afa5cac..2150e56 100644 (file)
@@ -28,7 +28,7 @@
  */
 class MWOldPassword extends ParameterizedPassword {
        protected function getDefaultParams() {
-               return array();
+               return [];
        }
 
        protected function getDelimiter() {
@@ -41,7 +41,7 @@ class MWOldPassword extends ParameterizedPassword {
                if ( $wgPasswordSalt && count( $this->args ) === 1 ) {
                        $this->hash = md5( $this->args[0] . '-' . md5( $plaintext ) );
                } else {
-                       $this->args = array();
+                       $this->args = [];
                        $this->hash = md5( $plaintext );
                }
        }