Przeglądaj źródła

그냥 초기 상태로

Surplus_Up (2DU) 6 lat temu
rodzic
commit
476cbc6926
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      route/view_read.py

+ 2 - 2
route/view_read.py

@@ -216,12 +216,12 @@ def view_read_2(conn, name):
     curs.execute(db_change("select data from other where name = 'body'"))
     curs.execute(db_change("select data from other where name = 'body'"))
     body = curs.fetchall()
     body = curs.fetchall()
     if body:
     if body:
-        div = '<div id="top_body_news">' + body[0][0] + '<hr class=\"main_hr\"></div>' + div
+        div = body[0][0] + div
 
 
     curs.execute(db_change("select data from other where name = 'bottom_body'"))
     curs.execute(db_change("select data from other where name = 'bottom_body'"))
     body = curs.fetchall()
     body = curs.fetchall()
     if body:
     if body:
-        div += '<div id="bottom_body_news"><hr class=\"main_hr\">' + body[0][0] + '</div>'
+        div += body[0][0]
 
 
     if ip_or_user(ip) == 0:
     if ip_or_user(ip) == 0:
         curs.execute(db_change("select title from scan where user = ? and title = ?"), [ip, name])
         curs.execute(db_change("select title from scan where user = ? and title = ?"), [ip, name])