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
sections/userhistory/post_history.php: line 216 expects l.PostID for $LastRead, which is only selected if $UserID is $LoggedUser['ID'] and grouping is disabled
Line 216 of sections/userhistory/post_history.php expects l.PostID for $LastRead, but, as shown in lines 108-111, it is possible for l.PostID to not be selected from the database. A simple solution would be to select l.PostID last, so the undefined offset will simply result in $LastRead being null.
The text was updated successfully, but these errors were encountered:
MrPMan
added a commit
to MrPMan/Gazelle
that referenced
this issue
Dec 24, 2015
sections/userhistory/post_history.php: line 216 expects l.PostID for $LastRead, which is only selected if $UserID is $LoggedUser['ID'] and grouping is disabled
Line 216 of sections/userhistory/post_history.php expects l.PostID for $LastRead, but, as shown in lines 108-111, it is possible for l.PostID to not be selected from the database. A simple solution would be to select l.PostID last, so the undefined offset will simply result in $LastRead being null.
The text was updated successfully, but these errors were encountered: