I have a calendar block view. It used to provide a link to the calendar month view.
With the upgrade, the link is gone.
Apologies if this is a view configuration error (I couldn't figure it out).
Theme is garland.
Screenshot attached.
| Comment | File | Size | Author |
|---|---|---|---|
| CalendarLinkProb.png | 44.24 KB | dgeilhufe@yahoo.com |
Comments
Comment #1
Tony Sharpe commentedI just noticed the same thing having just come across the following in function_theme_date_nav_title, so I assume it's something yet to be sorted. I seem to remember that it used to work. I'm using latest dev versions.
Comment #2
karens commentedThis has been fixed since rc2.
Comment #3
Tony Sharpe commentedNow works thanks.
Comment #4
dwees commentedI think this is still active.
Looking in calendar-mini.tpl.php on line 28 we see that the link/not link is embedded with a call to theme('date_navigation', $view);
So I did a search for date_navigation in the calendar module files and only came up with one other hit, in calendar-main.tpl.php which uses exactly the same code.
I did find calendar-nav.tpl.php which seems to include the code in question but it is clear from 35 that no link is going to be built with this code.
Is there something I am missing here?
FYI - thanks for the comment on line 325, sorry for no stable release, developing for Drupal is my hobby not my profession.
Dave
Comment #5
dwees commentedOkay I found the code in question and have uncommented it and removed the reference to the calendar_url_append($view) since l only takes 3 arguments now, and calendar_url_append is no longer valid.
Next step, get the link working...maybe I should download RC2 and see if this code somehow got scrubbed along the way?
Dave
Comment #6
dwees commentedLooks like this fix works for me, don't know how generic it is.
Change lines 80 to 83 in date/theme/theme.inc from
to
Comment #7
panchoIn RC5 the bug finally seems to be fixed in Date module (see commit 147599). Moving this issue there and marking it as fixed.