Commit ab45baad authored by Liang Ding's avatar Liang Ding

.

parent 3f03ac52
...@@ -872,7 +872,7 @@ public class ArticleProcessor { ...@@ -872,7 +872,7 @@ public class ArticleProcessor {
@RequestProcessing(value = "/article", method = HTTPRequestMethod.GET) @RequestProcessing(value = "/article", method = HTTPRequestMethod.GET)
public void showArticle(final HTTPRequestContext context, final HttpServletRequest request, final HttpServletResponse response) public void showArticle(final HTTPRequestContext context, final HttpServletRequest request, final HttpServletResponse response)
throws IOException { throws IOException {
// See PermalinkFiler#dispatchToArticleOrPageProcessor() // See PermalinkFilter#dispatchToArticleOrPageProcessor()
final JSONObject article = (JSONObject) request.getAttribute(Article.ARTICLE); final JSONObject article = (JSONObject) request.getAttribute(Article.ARTICLE);
if (null == article) { if (null == article) {
......
...@@ -120,7 +120,7 @@ public class PageProcessor { ...@@ -120,7 +120,7 @@ public class PageProcessor {
final Map<String, String> langs = langPropsService.getAll(Latkes.getLocale()); final Map<String, String> langs = langPropsService.getAll(Latkes.getLocale());
// See PermalinkFiler#dispatchToArticleOrPageProcessor() // See PermalinkFilter#dispatchToArticleOrPageProcessor()
final JSONObject page = (JSONObject) request.getAttribute(Page.PAGE); final JSONObject page = (JSONObject) request.getAttribute(Page.PAGE);
if (null == page) { if (null == page) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment