1 Undefined index: rc_logid in /srv/mediawiki/php-1.31.0-wmf.12/includes/changes/RecentChange.php on line 394
Description
Description
Related Objects
Related Objects
Event Timeline
Comment Actions
It seems not all caller of RecentChanges::newFromRow are using a row from database, so the logid is missing.
When than a tag is added, for example from AbuseFilter, it could be possible to get the undefined index.
It seems okay to just assume the default of 0 for the logid here.
if ( count( $this->tags ) ) { ChangeTags::addTags( $this->tags, $this->mAttribs['rc_id'], $this->mAttribs['rc_this_oldid'], $this->mAttribs['rc_logid'], null, $this ); }