Planet M.U.L.E.
M.U.L.E. Community => Website, Ranks & Forum => Topic started by: CXZman on January 09, 2010, 23:33
Title: Minor bug on GET parameters - Hi-Scores page Post by: CXZman on January 09, 2010, 23:33 "Hi-Scores" page allows to scoop on different pages of the big rank table using hyperlinks at the bottom. But those URL are a bit strange :
Code: http://www.planetmule.com/index.php?ore-players=&stats_page=501&ore-players?ore-players=&p=30 The page 501 shows up without problem, but I guess those "ore-players" shouldn't be there. I tried to rewrite that URL like this, to test access to page 502 : Code: http://www.planetmule.com/hi-score-players?stats_page=502&p=5 ... but returns 404 error. I guessed the "p" parameters just doesn't exists. I got rid of it. Now it looks like this : Code: http://www.planetmule.com/hi-score-players?stats_page=502 ... and now it works. That URL string concatenation seems a bit "dirty" :) I call it "minor" bug since it has currently so effect on client side whatsoever (at least it looks like it has no effect). Just my opinion, but still looks like a bug. PS : no I'm not a mad bug seeker :) I wanted to directly teleport on page 400, that is writing that GET parameter myself, and that's when I found that bug. |