From 5f390812581d2f1b7c385a458d5177d2c8a1deaf Mon Sep 17 00:00:00 2001 From: vargenau Date: Fri, 26 Oct 2012 13:07:18 +0000 Subject: [PATCH] elseif [PSR-2] The keyword elseif should be used instead of else if so that all control keywords looks like single words. git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@8419 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- passencrypt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passencrypt.php b/passencrypt.php index 333a0e427..b00ffe168 100644 --- a/passencrypt.php +++ b/passencrypt.php @@ -143,7 +143,7 @@ if (($posted['password'] != "") echo "

The encrypted password is:
\n
   \n", htmlentities($encrypted_password), "

\n"; echo "
\n"; -} else if ($posted['password'] != "") { +} elseif ($posted['password'] != "") { echo "The passwords did not match. Please try again.
\n"; } if (empty($REQUEST_URI)) -- 2.45.0