diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-09-23 17:53:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-09-23 17:53:09 +0000 |
commit | be705b919067505b075ccc2cdb57d3fd3df1cb81 (patch) | |
tree | 2c63d3a02d90239fc32ebf4940e75c770f08175e /modules/system/system.admin.inc | |
parent | b88cb830c85596a587a95d2ce5c7e2c377e5d19d (diff) | |
download | brdo-be705b919067505b075ccc2cdb57d3fd3df1cb81.tar.gz brdo-be705b919067505b075ccc2cdb57d3fd3df1cb81.tar.bz2 |
- Patch #915322 by munzirtaha: coding standard violation.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 0e3bfd659..13652b2c6 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1745,7 +1745,7 @@ function system_performance_settings() { $is_writable = is_dir($directory) && is_writable($directory); $disabled = !$is_writable; $disabled_message = ''; - if(!$is_writable) { + if (!$is_writable) { $disabled_message = ' ' . t('<strong class="error">Set up the <a href="!file-system">public files directory</a> to make these optimizations available.</strong>', array('!file-system' => url('admin/config/media/file-system'))); } |