소스 검색

버그 수정

Surplus_Up (2DU) 7 년 전
부모
커밋
286ef36208
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      app.py

+ 3 - 1
app.py

@@ -2419,6 +2419,8 @@ def topic(name = None, sub = None):
             all_data += '</td></tr><tr><td>' + render_set(data = topic_data[0]) + '</td></tr></tbody></table><br>'    
 
         for topic_data in topic:
+            user_write = topic_data[0]
+
             if number == 1:
                 start = topic_data[3]
 
@@ -2435,7 +2437,7 @@ def topic(name = None, sub = None):
             else:
                 blind_data = ''
 
-            user_write = render_set(data = topic_data[0])
+            user_write = render_set(data = user_write)
             ip = ip_pas(topic_data[3])
             
             curs.execute('select acl from user where id = ?', [topic_data[3]])