Current time: 07-04-2009, 11:20 PM Hello There, Guest! (LoginRegister)


Post Reply 
[D] [WOL] Incorrect reading of parameters
10-03-2008, 10:58 AM
Post: #1
[D] [WOL] Incorrect reading of parameters
I found another bug in the WOL:

The location, which is stored in the database, has this form:
page.php?param1=this&param2=that

But in functions_online.php on line 37 you find:
PHP Code:
        $temp explode("&"my_substr($split_loc[1], 1)); 
So instead of getting "param2" as second parameter, you will get "amp;param2", because only the & is used to seperate the parameters.

Solution:
Just change the given line to:
PHP Code:
        $temp explode("&"my_substr($split_loc[1], 1)); 
Find all posts by this user
Quote this message in a reply
10-03-2008, 01:19 PM
Post: #2
RE: [D] [WOL] Incorrect reading of parameters
That was the fix for this: http://community.mybboard.net/thread-38085.html

[Image: ryangordon.png]
My Blog - My Mods - My Site
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: