Skip to content

Commit

Permalink
Update files.py
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Dec 25, 2024
1 parent 2a2e37c commit e4aae51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/admin/files/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ def get_dir():
order = request.form.get('order', '')

if search_all == 'yes' and search != '':
dir_list = file.getAllDirList(path, int(page), int(row),order, search)
dir_list = file.getAllDirList(path, int(page), int(row), order, search)
else:
dir_list = file.getDirList(path, int(page), int(row),order, search)
dir_list = file.getDirList(path, int(page), int(row), order, search)

dir_list['page'] = mw.getPage({'p':page, 'row': row, 'tojs':'getFiles', 'count': dir_list['count']}, '1,2,3,4,5,6,7,8')
return dir_list
Expand Down

0 comments on commit e4aae51

Please sign in to comment.