mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Correctly escape sort-by columns in SQL (refs #189)
This commit is contained in:
parent
21e05e87be
commit
afd24ef58c
1 changed files with 2 additions and 2 deletions
|
|
@ -616,10 +616,10 @@ class TableView(RowTableShared):
|
|||
# Allow for custom sort order
|
||||
sort = special_args.get('_sort')
|
||||
if sort:
|
||||
order_by = sort
|
||||
order_by = escape_sqlite(sort)
|
||||
sort_desc = special_args.get('_sort_desc')
|
||||
if sort_desc:
|
||||
order_by = '{} desc'.format(sort_desc)
|
||||
order_by = '{} desc'.format(escape_sqlite(sort_desc))
|
||||
|
||||
count_sql = 'select count(*) from {table_name} {where}'.format(
|
||||
table_name=escape_sqlite(table),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue