Software /
code /
prosody
Changeset
11887:b043e1bb8e8e
mod_admin_shell: Allow passing columns as a string for convenience
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 10 Nov 2021 16:28:54 +0100 |
parents | 11886:b0b258e092da |
children | 11888:050c515fe9aa |
files | plugins/mod_admin_shell.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua Wed Nov 10 15:54:27 2021 +0100 +++ b/plugins/mod_admin_shell.lua Wed Nov 10 16:28:54 2021 +0100 @@ -809,6 +809,7 @@ }; local function get_colspec(colspec, default) + if type(colspec) == "string" then colspec = array(colspec:gmatch("%S+")); end local columns = {}; for i, col in pairs(colspec or default) do if type(col) == "string" then