Quote:
Originally Posted by pjfry
Hi I use the ultimate Version of this Addon and get this error when chaning my settings:
Thanks for your help!
Benny
|
This version of livenotifications have a
bug in
profile.php?do=editoptions
The file
includes/functions_livenotifications.php execute a INSERT QUERY on 751 row with 11 fields and 12 values.
## Fix ##
Search:
Code:
$q = "INSERT INTO " . TABLE_PREFIX . "livenotifications_usersettings
(ln_enable_comment, ln_enable_post, ln_enable_reply, ln_enable_reputation,
ln_enable_quote,ln_enable_taguser, ln_enable_pm, ln_enable_friend,ln_enable_vbseolike,ln_enable_vbarcade, userid)
VALUES
Replace with:
Code:
$q = "INSERT INTO " . TABLE_PREFIX . "livenotifications_usersettings
(ln_enable_comment, ln_enable_post, ln_enable_reply, ln_enable_reputation,
ln_enable_quote,ln_enable_taguser, ln_enable_pm, ln_enable_friend,ln_enable_blogcomment,ln_enable_vbseolike,ln_enable_vbarcade, userid)
VALUES
Good luck