diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-05-20 07:34:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-05-20 07:34:38 +0000 |
commit | f3c875717910918574aa1310de176e0c44062199 (patch) | |
tree | 6ea8a302644d3e712263cfd61fd2163dee2eddc0 /includes/theme.inc | |
parent | d895ef8c40a91380f8f484b41b9df11889e1380b (diff) | |
download | brdo-f3c875717910918574aa1310de176e0c44062199.tar.gz brdo-f3c875717910918574aa1310de176e0c44062199.tar.bz2 |
- Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
(and possibly tabs).
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 63af790bc..0344195b2 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -116,7 +116,7 @@ function theme_blocks($region, &$theme) { global $id, $PHP_SELF, $user; $result = db_query("SELECT * FROM blocks WHERE (status = '1' OR custom = '1') ". ($region != "all" ? "AND region = '%s' " : "") ."ORDER BY weight, name", $region == "left" ? 0 : 1); - + while ($result && ($block = db_fetch_object($result))) { if (($block->status && (!$user->uid || !$block->custom)) || ($block->custom && $user->block[$block->name])) { $blocks = module_invoke($block->module, "block"); |