Multiple Pages Do Not Work
jsedlak - January 31, 2007 - 14:50
| Project: | Article |
| Version: | 5.x-1.0 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | msameer |
| Status: | closed |
Jump to:
Description
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

#1
This is also true for 4.7.x-1.x-dev.
#2
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
#3
Can you please test with 4.7.x-1.2 (http://drupal.org/node/124444) ?
#4
4.7.x-1.2 fixed it for me. Thanks!
#5