Quote:
Originally Posted by nerofix
Admin CP --> LDM --> Settings
I'll get this error:
Fatal error: Cannot redeclare update_settings() (previously declared in forum/admincp/vcharset/functions_vcharset.php:16) in forum/includes/local_links_misc.php on line 399
|
There's a clash of function name with the code in whichever hack provides vcharset.
This will be fixed in the next release of LDM. In the meantime, you can (if you want) edit the code to get rid of this problem.
Replace 'update_settings' by 'update_ldm_settings' five time, as follows:
local_links_actions.php
(line 2508): if (!update_settings($catid, $_REQUEST, $errors)) {
(line 2712): if (!update_settings($catid, $_REQUEST, $errors)) {
local_links_admin.php
(line 1171): update_settings(-1, $_REQUEST, $errors);
includes\local_links_misc.php
(line 399): function update_settings($catid, $settings, &$errors) {
(line 797): ldm_general_failure("update_settings/$name");