Skip to forum content

URL Blacklist

Home of URL Checker Extension for PunBB 1.4 and 1.3

You are not logged in. Please login or register.

URL Blacklist - URL Checker extension now available for PunBB 1.4.1

Current release 0.5.2 -> Download


Post new reply

Post new reply

Compose and post your new reply

You may use: BBCode Images Smilies

All fields with bold label must be completed before the form is submitted.

Required information for guests


Required information

Topic review (newest first)

1

Warning: Parameter 3 to showItem() expected to be a reference

Modify the following things in the /includes/Cache/Lite/Function.php:

1.
from: $result = call_user_func_array(array($class, $method), $arguments);
to:$result = call_user_func_array(array($class, $method), &$arguments);

2.
from: $result = call_user_func_array(array($$object_123456789, $method), $arguments);
to: $result = call_user_func_array(array($$object_123456789, $method), &$arguments);

3.
from: $result = call_user_func_array($target, $arguments);
to: $result = call_user_func_array($target, &$arguments);


The difference is not that big, it's just a matter of adding a ampersand before the arguments parameter, &$arguments, in all cases for php to realize that things are being passed by reference.


forum.joomla.org/viewtopic.php?f … p;t=530296