Marcus
Well-known member
I have several hundred forums, it really seems that every forum gets its own query when marking all forums read. Is that true?
	
	
	
		
				
			
		PHP:
	
	  public function markForumRead(array $forum, $readDate, array $viewingUser = null){
       INSERT INTO xf_forum_read
         (user_id, node_id, forum_read_date)
       VALUES
         (?, ?, ?)
   }