summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-27 10:30:44 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-27 10:30:44 +0000
commit2fe78b84f314a598fb6b45ee7624d4b320a47074 (patch)
tree3e08fc483fc78c37f89bf027290f6c5818f3d809 /themes
parentb362985de5cf8a5485dfe67ccb56f249b64130b8 (diff)
downloadbrdo-2fe78b84f314a598fb6b45ee7624d4b320a47074.tar.gz
brdo-2fe78b84f314a598fb6b45ee7624d4b320a47074.tar.bz2
- Patch #40631 by Chris Johnson: added missing isset().
Diffstat (limited to 'themes')
-rw-r--r--themes/chameleon/chameleon.theme2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 54def5f6e..da80828f4 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -60,7 +60,7 @@ function chameleon_page($content) {
if (isset($primary_links)) {
$output .= '<div class="primary">'. $primary_links .'</div>';
}
- if (($secondary_links)) {
+ if (isset($secondary_links)) {
$output .= '<div class="secondary">'. $secondary_links .'</div>';
}
$output .= " </div>\n";