diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-03-03 22:57:43 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-03-03 22:57:43 +0000 |
commit | 1b3c34d05eff22261344a1184422d7a2f41f19e4 (patch) | |
tree | 2f9ca482cfb20a4c949e5dfa65d1bbda58886f75 /app | |
parent | 14e124d2ebb81bb6e3f6af0b13326339c48ced4b (diff) | |
download | acf-core-1b3c34d05eff22261344a1184422d7a2f41f19e4.tar.bz2 acf-core-1b3c34d05eff22261344a1184422d7a2f41f19e4.tar.xz |
Added grep field to filedetails HTML view
Diffstat (limited to 'app')
-rw-r--r-- | app/filedetails-html.lsp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp index 3f023be..3116722 100644 --- a/app/filedetails-html.lsp +++ b/app/filedetails-html.lsp @@ -17,6 +17,9 @@ header_level = htmlviewfunctions.displayheader(cfe({label="File Details"}), page htmlviewfunctions.displayitem(form.value.filename) htmlviewfunctions.displayitem(form.value.filesize) htmlviewfunctions.displayitem(form.value.mtime) +if form.value.grep and form.value.grep.value and form.value.grep.value ~= "" then + htmlviewfunctions.displayitem(form.value.grep) +end %> <% |