A quick ugly fix to display more nodes per day is to change line 233:

-- $result = db_query_range($sql, $date, $date_end, 0, 20);
++ $result = db_query_range($sql, $date, $date_end, 0, 99);

Better would be:
- an admin-setting for the displayed number of nodes
- and an optional pager if there are more nodes than the settings.

Any takers?

Comments

gábor hojtsy’s picture

Status: Active » Fixed

New features are added to archive module on the 5.x branch, and that has the default nodes count setting taken into account, as well as a pager for archive pages.

Stephan_M’s picture

*SOLVED*

You're right. Thank you. Updating to drupal 4.7.6 updates the archive.module with a beautifull pager too.

Anonymous’s picture

Status: Fixed » Closed (fixed)