Merge branch 'v3'

This commit is contained in:
Zixaphir 2013-05-10 15:56:57 -07:00
commit e506bb5a5c
4 changed files with 8 additions and 8 deletions

View File

@ -7257,8 +7257,8 @@
continue;
}
count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
}
deletedPosts = [];
deletedFiles = [];

View File

@ -7266,8 +7266,8 @@
continue;
}
count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
}
deletedPosts = [];
deletedFiles = [];

View File

@ -9540,8 +9540,8 @@
continue;
}
count++;
node = Build.postFromObject(postObject, ThreadUpdater.thread.board);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID));
node = Build.postFromObject(postObject, ThreadUpdater.thread.board.ID);
posts.push(new Post(node, ThreadUpdater.thread, ThreadUpdater.thread.board));
}
deletedPosts = [];
deletedFiles = [];

View File

@ -269,8 +269,8 @@ ThreadUpdater =
continue if num <= ThreadUpdater.lastPost
# Insert new posts, not older ones.
count++
node = Build.postFromObject postObject, ThreadUpdater.thread.board
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID
node = Build.postFromObject postObject, ThreadUpdater.thread.board.ID
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
deletedPosts = []
deletedFiles = []