|
Re: Problem with fudapi.inc.php [message #164907 is a reply to message #164905] |
Sat, 02 April 2011 10:15 |
|
Dayo
Messages: 101 Registered: April 2011
Karma: 0
|
Senior Member |
|
|
OK. Found the error.
fudapi.inc.php has ...
$err = 'value for '. $v .' must be unique, specified value of '. $vals[$v] '. already exists.';
in the offending line.
This is an error and should be ...
$err = 'value for '. $v .' must be unique, specified value of '. $vals[$v] .' already exists.';
I.E. should be
Surprised I appear to be the first to have hit this.
[Updated on: Sat, 02 April 2011 10:15] Report message to a moderator
|
|
|
|