
06-21-2012, 02:05 AM
|
 |
|
|
Join Date: Jul 2009
Location: Florida
Posts: 1,890
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by stefano9lli
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 
|
Thanks, updated to 5.2 to fix this issue.
|