Indentation.

This commit is contained in:
Michal Čihař
2008-09-03 13:06:17 +00:00
parent 21d72b9d99
commit 737b292e0d

View File

@@ -477,7 +477,7 @@ class PMA_Config
} }
// Check for permissions (on platforms that support it): // Check for permissions (on platforms that support it):
if ($this->get('CheckConfigurationPermissions')) { if ($this->get('CheckConfigurationPermissions')) {
$perms = @fileperms($this->getSource()); $perms = @fileperms($this->getSource());
if (!($perms === false) && ($perms & 2)) { if (!($perms === false) && ($perms & 2)) {
// This check is normally done after loading configuration // This check is normally done after loading configuration
@@ -486,8 +486,8 @@ class PMA_Config
$this->source_mtime = 0; $this->source_mtime = 0;
die('Wrong permissions on configuration file, should not be world writable!'); die('Wrong permissions on configuration file, should not be world writable!');
} }
} }
} }
return true; return true;
} }