| 123456789101112131415161718 |
- from .tool.func import *
- def recent_history_hidden(name = 'Test', rev = 1):
- with get_db_connect() as conn:
- curs = conn.cursor()
- num = str(rev)
- if admin_check(6, 'history_hidden (' + name + '#' + num + ')') == 1:
- curs.execute(db_change("select title from history where title = ? and id = ? and hide = 'O'"), [name, num])
- if curs.fetchall():
- curs.execute(db_change("update history set hide = '' where title = ? and id = ?"), [name, num])
- else:
- curs.execute(db_change("update history set hide = 'O' where title = ? and id = ?"), [name, num])
- conn.commit()
- return redirect('/history/' + url_pas(name))
|