Thanks for the quick reply Andrew! I will ask the guys over at vbdrupal about changing their function name. How much code modification would it take to get your mod to work? So I just change the name of the function and the code that references that function and it's all good?
I'll check it out!
Thanks,
Sean
Quote:
Originally Posted by AndrewD
Sean, you will have to edit one or other piece of code to rename function check_url to something else.
The difficulty is one has no control over the ways users combine pieces of software, and it is not straightorward in php to keep function definitions localised.
I've started working on this problem for 2.2.7 by introducing a new naming scheme, but it will be sometime before I am confident that nothing has been broken in the process.
If you are running v 2.2.5, this is where check_url is defined/used:
check_url (local_links_include.php)
local_links_include.php(1171)
local_links_actions.php(412)
local_links_actions.php(445)
local_links_actions.php(702)
local_links_actions.php(837)
local_links_actions.php(875)
local_links_admin.php(849)
If you are running 2.2.6 beta, these are the locations:
check_url (local_links_include.php)
local_links_include.php(1185)
local_links_actions.php(412)
local_links_actions.php(445)
local_links_actions.php(702)
local_links_actions.php(837)
local_links_actions.php(875)
local_links_admin.php(849)
|