Merge pull request #5133 from guoyunhe/patch-1

bbcode find close tag loop end condition
This commit is contained in:
Arpit Jalan
2017-09-08 00:04:30 +05:30
committed by GitHub

View File

@@ -178,8 +178,8 @@ function findInlineCloseTag(state, openTag, start, max) {
closeTag = null;
} else {
closeTag.start = j;
break;
}
break;
}
}
}