Skip to content

Commit

Permalink
fix the reply bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fenjuly committed Oct 1, 2014
1 parent da1aa81 commit 830c057
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,8 @@ protected Integer doInBackground(String... params) {
if (posts.get(Integer.valueOf(params[2]) - 1).content.startsWith("%%%%%")) {
content = posts.get(Integer.valueOf(params[2]) - 1).content.substring("%%%%%".length());
} else {
content = posts.get(Integer.valueOf(params[2]) - 1).content;
String[] temp = posts.get(Integer.valueOf(params[2]) - 1).content.split("%%%%%");
content = temp[1];
}
noticetrimstr = "[quote][size=2][url=forum.php?mod=redirect&goto=findpost&pid="
+ posts.get(Integer.valueOf(params[2]) - 1).pid
Expand Down

0 comments on commit 830c057

Please sign in to comment.