You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a bug introduced a long time ago between XOOPS 2.5.0-rc and 2.5.0-rc2 in the user comment sync-ing function.
in ./modules/system/admin/users/main.php line 321 currently reads: synchronize($$uid, 'user');
but should be: synchronize($uid, 'user'); <- remove extra'$'
Same bug exists in XOOPS 2.6 branch
The text was updated successfully, but these errors were encountered:
geekwright
added a commit
to geekwright/XoopsCore25
that referenced
this issue
May 7, 2020
There was a bug introduced a long time ago between XOOPS 2.5.0-rc and 2.5.0-rc2 in the user comment sync-ing function.
in
./modules/system/admin/users/main.php
line 321 currently reads:synchronize($$uid, 'user');
but should be:
synchronize($uid, 'user');
<- remove extra'$'Same bug exists in XOOPS 2.6 branch
The text was updated successfully, but these errors were encountered: