소스 검색

Don't cache a page if an error is set.

default 1 년 전
부모
커밋
e49c837cd7
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      html.c

+ 2 - 0
html.c

@@ -2783,6 +2783,8 @@ int html_get_handler(const xs_dict *req, const char *q_path,
 
     /* get a possible error message */
     const char *error = xs_dict_get(q_vars, "error");
+    if (error != NULL)
+        cache = 0;
 
     /* a show of 0 has no sense */
     if (show == 0)