![]()
From: Brian Kirkby (bkirkby@Concentrico.net)
Date: Fri Jul 13 2001 - 03:16:13 CDT
The index links for folder_by_date or msgsperfolder would contain broken links (<a href>) for the next and previous folders.
I tracked this down to a problem in print.c where index_name (array of an array of char pointers) was being accessed as an array of char pointers.
Here is the diff:
251c251
< subdir->prior_subdir->subdir, index_name[idx],
--- > subdir->prior_subdir->subdir, index_name[dlev][idx], 256c256 < subdir->next_subdir->subdir, index_name[idx], --- > subdir->next_subdir->subdir, index_name[dlev][idx], -bk bkirkby@SPAM-FREEkirkby.org
![]()