I've just discovered that the publication page (i.e. epublish/1) on a site I maintain that uses Epublish does not show the full list of editions, as one might expect. Instead, it just shows the table of contents for the current issue. Considering that in the Epublish navigation on every page, there is a "View all issues" link that points to that page, this is a bit of a problem - people have no easy way of finding any issues other than the current one!

I checked the URL aliases and URL redirects sections in the admin, but could find nothing there that would account for it. Since I've seen other people refer to having a list of editions on this page, I assume this is not happening to everyone - but has anyone else encountered it before? Or does anyone have any idea what might be causing this and how I can fix it?

The site in question is http://www.magentamagazine.com/ in case that helps.

Comments

sdague’s picture

Assigned: Unassigned » sdague

This looks like it's been the behavior for a while, but I agree that it's not optimal, and pretty confusing. Will look into a fix for this.

spidersilk’s picture

OK, so it's not just my site? Good and bad to know, I suppose - good because it means I didn't do anything wrong, bad because it means I probably can't fix it, even though the client is very upset and wants it pretty much fixed yesterday. :-(

I will take a look at the module code too, and see if I can figure out what's going on - obviously you're in a better position to figure it out than I am, but I'll see what I can do.

sdague’s picture

Here is the quick fix to get you past this:

Edit line 795 of epublish.module (epublish_pub_page function) and change

$ed = arg(2) ? arg(2) : "current";

to

$ed = arg(2);

Alice Heaton’s picture

Hi,

I'm upgrading a Drupal site that uses an old version of epublish and have encountered the same problem. The site relies on "epublish/xx" actually showing the list of editions.

Could the new behaviour be made optional ?

Thanks for this module.

Best,
Anselm

sdague’s picture

Status: Active » Closed (fixed)

Fixed in epublish 1.15 (now released)