When clicking "Next Page" or "Page 2" in the Article module's view, the page returns completely blank.

Problem can be seen at http://jsedlak.org/article/CSharp/XNA

Comments

svenny’s picture

This is also true for 4.7.x-1.x-dev.

cvining’s picture

I've had this trouble with Drupal 4.7.4. Here is my 'fix'.

I traced the problem to the function "url" in includes/common.inc. Line number 1033 of that file reads

return $base . $path . '?' . $query . $fragment

which I changed to

return $base . $path . '/?' . $query . $fragment

I'm obviously concerned that this might break something else, but so far so good. Anyway, I can finally navigate my /articles!

- Cronin

msameer’s picture

Can you please test with 4.7.x-1.2 (http://drupal.org/node/124444) ?

svenny’s picture

Priority: Critical » Normal
Status: Active » Fixed

4.7.x-1.2 fixed it for me. Thanks!

msameer’s picture

Assigned: Unassigned » msameer
Status: Fixed » Closed (fixed)