Closed (fixed)
Project:
Article
Version:
5.x-1.0
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
31 Jan 2007 at 14:50 UTC
Updated:
14 Mar 2007 at 23:08 UTC
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
Comment #1
svenny commentedThis is also true for 4.7.x-1.x-dev.
Comment #2
cvining commentedI'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
Comment #3
msameer commentedCan you please test with 4.7.x-1.2 (http://drupal.org/node/124444) ?
Comment #4
svenny commented4.7.x-1.2 fixed it for me. Thanks!
Comment #5
msameer commented