Snog
Well-known member
This is for 1.5 Beta 1
When accessing the forum index page, the thread fetch options have an improper array causing the default actions in /XenForo/Model/Thread.php to take place.
The array contained in the fetchoptions is this..
	
	
	
		
It should be this...
	
	
	
		
This causes anything using the proper array ($fetchOptions['order']) to error out.
				
			When accessing the forum index page, the thread fetch options have an improper array causing the default actions in /XenForo/Model/Thread.php to take place.
The array contained in the fetchoptions is this..
		Code:
	
	Array ( [0] => last_post_date [1] => DESC )
	It should be this...
		Code:
	
	Array ( [order] => last_post_date [orderDirection] => DESC )
	This causes anything using the proper array ($fetchOptions['order']) to error out.
			
				Last edited: