silence
Well-known member
So I'm using XenForo_Model_Like to implement my own like handler that I don't want incremented in the xf_user table, so I'm wondering if this line:
	
	
	
		
could be set to update somewhere via the content type. As it would be much appreciated 
				
			
		Code:
	
	                $db->query('
                    UPDATE xf_user
                    SET like_count = like_count + 1
                    WHERE user_id = ?
                ', $contentUserId);
	
		
		Upvote
		0