MyBB Community Forums

Full Version: [F] Users ban is not lifted in class_session - bad banned cache array?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB 1.4.2

Ban for user is not lifted by class_session.php. Probably because of bad array in data cache.
class_session.php is using $UID as a key:
		// Read the banned cache
		$bannedcache = $cache->read("banned");	
		...
		...
		if($bannedcache[$uid])
		{
But in class_datacache.php we have:
	function update_banned()
	{
		global $db;
		
		$bans = array();
		
		$query = $db->simple_select("banned");
		while($ban = $db->fetch_array($query))
		{
			$bans[] = $ban;
		}
	}
And result - banned cache is not indexed by UIDs.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.

With regards,
MyBB Group