I've followed the instructions to install the Daily module, but it's giving me problems. Taxonomy is set up as instructed but the calendars on daily nodes aren't showing up any links at all even for days with content. The "first" link at the bottom works correctly, but "next" never displays; "previous" and "last" always point to the last in the group, making navigation impossible for nodes in the middle.

Also, all content from the module is displaying html entities as their html-source form (even on the admin->help->daily page; this is despite the "raquo" in Home » Administrate at the top of the page showing correctly).

Anybody know what's causing this? (Drupal 4.6.0, on Linux-based Apache w/ PHP-5.0.4.)

Comments

ghavo’s picture

I modified line number 212 in the daily_data.inc

OLD

$output .= "

". (array_key_exists('prev', $data)?l("«", $data["prev"]):" ") ." ". format_date($data["date"], 'custom', "F Y") ." ". (array_key_exists('next', $data)?l("»", $data["next"]):" ") ."

\n";

NEW

$output .= "

". (array_key_exists('prev', $data)?l("Prev", $data["prev"]):" ") ." ". format_date($data["date"], 'custom', "F Y") ." ". (array_key_exists('next', $data)?l("Next", $data["next"]):" ") ."

\n";

I looked at some HTML sites on how to do tags and the values &laquo and &raquo is suppose to turn it into arrows but it does not work. I just replaced it with the words Next and Prev. I hope this helps.

BTW... you're the first posting I helped!!! I love this DRUPAL community!!!!

Gha-VO