I noticed that the secondary menu in this theme was not picking up the primary menu's second level automatically. I changed the if ($secondary): to if (isset($secondary)): on line 52 of page.tpl.php and this fixed it.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | page-tpl.patch | 425 bytes | rport |
| page.tpl_.php_.txt | 3.61 KB | sirkitree |
Comments
Comment #1
rport commentedsirkitree,
I have attached a copy of the patch for your code. I hope this is ok..
rport
Comment #2
sirkitree commentedYea that works. I didn't make a patch for it cuz it's only a one liner and I'm not really sure about etiquette on that sort of thing.
Comment #3
jjeff commentedI've changed all of the
if ($something)s toif (!empty($something)). This should fix this issue and be a little more bulletproof than the current system. Please let me know if this problem persists.Comment #4
jjeff commentedComment #5
(not verified) commented