Fixed lout issue with redirects

fixed database migration problem which was introduced with the shelf order commit
pull/90/head
OzzieIsaacs 8 years ago
parent cf01f7ce61
commit f434511db8

@ -179,7 +179,7 @@ def migrate_Database():
session.commit()
except exc.OperationalError: # Database is not compatible, some rows are missing
conn = engine.connect()
conn.execute("ALTER TABLE book_shelf_link ADD column order INTEGER DEFAULT 1")
conn.execute("ALTER TABLE book_shelf_link ADD column `order` INTEGER DEFAULT 1")
session.commit()

@ -164,7 +164,8 @@ app.secret_key = 'A0Zr98j/3yX R~XHH!jmN]LWX/,?RT'
LANGUAGES = {
'en': 'English',
'de': 'Deutsch',
'fr': 'Français'
'fr': 'Français',
'es': 'Español'
}
@ -1190,7 +1191,7 @@ def login():
def logout():
if current_user is not None and current_user.is_authenticated:
logout_user()
return redirect(url_for("index", _external=True))
return redirect('/login' or url_for("login", _external=True))
@app.route('/send/<int:book_id>')

Loading…
Cancel
Save