- Joined
- Sep 21, 2003
- Messages
- 31,044
- Location
- Portland, Oregon
- Car(s)
- 2008 Dodge Viper, 2006 MB CLS55 AMG
Just a heads up - I fixed the quick reply's "All" button. The person who made the mod kinda f'ed it up.
Technical explanation of what was wrong if you're interested:
The button calls upon this page: http://forum.finalgear.com/quick_reply.php?mode=smilies
The script had something like:
and that only works if variables are set automatically via the URL and that's retarded frankly when that happens. It can cause potential exploitation. Viper007Bond.com has that on and that's why it worked there.
I edited the code so that it has this now:
which is how it shoulda been done in the first place.
Technical explanation of what was wrong if you're interested:
The button calls upon this page: http://forum.finalgear.com/quick_reply.php?mode=smilies
The script had something like:
Code:
if ($mode = "smilies") {
blah blah
}
I edited the code so that it has this now:
Code:
if ($_GET['mode'] = "smilies") {
blah blah
}