Quote:
Originally Posted by Mattikana
Works fine but I needed to disable this hack, otherwise I get the following error...
PHP Code:
Fatal error: Call to undefined function: replacepngtags() in /home/*********/public_html/forum/includes/functions.php on line 4436
|
Yes i know about that one, it is actually a problem with how the script is coded but doesnt show itself due to vbulletins buffered output.
Basically its calling the replacepngtags() before the actual function is defined. You can solve that problem by moving the function definition above the actual call to it..
in lamens terms..
you want
function nameofthefunction()
{
}
nameofthefunction()
instead of vice versa.