From: <var...@us...> - 2012-10-26 13:07:29
|
Revision: 8419 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8419&view=rev Author: vargenau Date: 2012-10-26 13:07:18 +0000 (Fri, 26 Oct 2012) Log Message: ----------- elseif [PSR-2] The keyword elseif should be used instead of else if so that all control keywords looks like single words. Modified Paths: -------------- trunk/passencrypt.php Modified: trunk/passencrypt.php =================================================================== --- trunk/passencrypt.php 2012-10-26 13:05:03 UTC (rev 8418) +++ trunk/passencrypt.php 2012-10-26 13:07:18 UTC (rev 8419) @@ -143,7 +143,7 @@ echo "<p>The encrypted password is:<br />\n<br /> \n<tt><strong>", htmlentities($encrypted_password), "</strong></tt></p>\n"; echo "<hr />\n"; -} else if ($posted['password'] != "") { +} elseif ($posted['password'] != "") { echo "The passwords did not match. Please try again.<br />\n"; } if (empty($REQUEST_URI)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |