Stuart Wright
Well-known member
So we are properly TSL at https://www.avforums.com
Yet in XenForo/Template/Helper/Core.php
	
	
	
		
does not insert the secure call and the padlock is broken because of the http:// call to Gravatar.
We have to edit core.php to read
	
	
	
		
Is this a problem with Xenforo or our server?
				
			Yet in XenForo/Template/Helper/Core.php
		Code:
	
	return (XenForo_Application::$secure ? 'https://secure' : 'http://www')
   . ".gravatar.com/avatar/{$md5}?s={$size}{$default}";We have to edit core.php to read
		Code:
	
	return "https://secure.gravatar.com/avatar/{$md5}?s={$size}{$default}"; 
 
		 
 
		 
 
		 
 
		 
 
		