Current time: 05-24-2012, 12:21 PM Hello There, Guest! (LoginRegister)


[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
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
Visit this user's website Find all posts by this user


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | MyBB | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication