Change to match coding standards

This commit is contained in:
James Hall 2012-08-26 02:11:43 +01:00
parent a3b5065f8a
commit 20baeb83db

View file

@ -1120,7 +1120,7 @@ class CakeEmailTest extends CakeTestCase {
$this->CakeEmail->emailFormat('html'); $this->CakeEmail->emailFormat('html');
$server = env('SERVER_NAME') ? env('SERVER_NAME') : 'localhost'; $server = env('SERVER_NAME') ? env('SERVER_NAME') : 'localhost';
if (env('SERVER_PORT') != NULL && env('SERVER_PORT') != 80) { if (env('SERVER_PORT') != null && env('SERVER_PORT') != 80) {
$server .= ':' . env('SERVER_PORT'); $server .= ':' . env('SERVER_PORT');
} }