Closed (works as designed)
Project:
Rubik
Version:
7.x-4.0-beta8
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Oct 2010 at 20:49 UTC
Updated:
20 May 2014 at 15:56 UTC
Jump to comment: Most recent
Comments
Comment #1
seth.vincent commentedI had the same issue (but not with skip_nav_class, that's an adaptive theme issue, not rubik or tao).
I got the notice to go away by enabling tao.
Comment #2
ericduran commentedThis isn't a bug, Rubik is a sub theme of Tao. If you enabled tao you download Tao (http://drupal.org/project/tao) you will no longer have this issue as Tao is what declares the "primary_local_tasks" variable for rubik to use.
Comment #3
Bitbull commentedI freshly installed the Rubik admin theme and Tao, and nearly the same error is being thrown:
(nothing about skip_nav_class)
To mention that I installed Tao after Rubik, after noticing the required dependancy. Before Tao installation, a lot of other errors showed up.
Could you please (re)check in this version?
Comment #4
piratawww commentedYou should clear all caches...
Comment #5
star-szrComment #6
zaid173 commentedyou shoud enable base theme Tao
Comment #7
bdanin commentedI enabled tao, but was still getting the errors; I wrapped the two variables in
isset()and it went away in my subthemefor more context, here are the two lines in full:
<?php if (isset($primary_local_tasks)): ?><ul class="links clearfix"><?php print render($primary_local_tasks) ?></ul><?php endif; ?><?php if (isset($secondary_local_tasks)): ?><ul class="links clearfix"><?php print render($secondary_local_tasks) ?></ul><?php endif; ?>