The "Show full page" was linking to website.com/node/1/100?page=show instead of website.com/node/100?page=show. The /1 is getting added when it shouldn't be.
I think this variable_get('site_frontpage', 'node') is returning website.com/node/1 and the /1 is breaking the link and /1 is my "site_frontpage".
I changed variable_get('site_frontpage', 'node') to variable_get($base_url, 'node') and now it works fine.
Just wanted to put this in just in case it wasn't just me.
Using Drupal 6.9 and a whole lot of modules :)
Comments
Comment #1
mundanity commentedHmm,
Did you change your frontpage variable at all? Take a look at "admin/settings/site-information" and let me know if yours is not "node", which should be the default. I'll leave this open in case anyone else is seeing this too.
Comment #2
mundanity commentedHi there,
I've updated dev to avoid this, looking back on it using site_frontpage doesn't make sense at all anyhow.