Merge branch 'v3'

This commit is contained in:
Zixaphir 2013-05-10 14:36:12 -07:00
commit 61b2381d15
4 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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

View File

@ -270,7 +270,7 @@ ThreadUpdater =
# Insert new posts, not older ones.
count++
node = Build.postFromObject postObject, ThreadUpdater.thread.board
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board
posts.push new Post node, ThreadUpdater.thread, ThreadUpdater.thread.board.ID
deletedPosts = []
deletedFiles = []