From 2fe78b84f314a598fb6b45ee7624d4b320a47074 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 27 Dec 2005 10:30:44 +0000
Subject: [PATCH] - Patch #40631 by Chris Johnson: added missing isset().

---
 themes/chameleon/chameleon.theme | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 54def5f6e512..da80828f4862 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";
-- 
GitLab