Skip to content
Snippets Groups Projects
Commit ec38edd8 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Merge branch 'F12015useAdvancedFormEditor' into 'develop'

Refs #12015 fix wrong case in advanced form editor (Form -> form)

See merge request !325
parents 2adaecd2 0091cb78
No related branches found
No related tags found
2 merge requests!329Develop,!325Refs #12015 fix wrong case in advanced form editor (Form -> form)
Pipeline #5071 passed
...@@ -14,7 +14,7 @@ form={{form:SE}} ...@@ -14,7 +14,7 @@ form={{form:SE}}
# List of Forms: Do not show this list of forms if there is a form given by SIP. # List of Forms: Do not show this list of forms if there is a form given by SIP.
# Table header. # Table header.
sql = SELECT '<th data-sorter="false" class="filter-false">' sql = SELECT '<th data-sorter="false" class="filter-false">'
, CONCAT('p:{{pageAlias:T}}&form=Form&') as _pagen , CONCAT('p:{{pageAlias:T}}&form=form&') as _pagen
, '</th><th>Name' , '</th><th>Name'
, '</th><th>Title' , '</th><th>Title'
, '</th><th>Table' , '</th><th>Table'
...@@ -31,7 +31,7 @@ form={{form:SE}} ...@@ -31,7 +31,7 @@ form={{form:SE}}
20 { 20 {
# All forms # All forms
sql = SELECT CONCAT('p:{{pageAlias:T}}&form=Form&r=', f.id) as _pagee sql = SELECT CONCAT('p:{{pageAlias:T}}&form=form&r=', f.id) as _pagee
, CONCAT(f.name, ' <span class="text-muted">(', f.id, ')</span>') , CONCAT(f.name, ' <span class="text-muted">(', f.id, ')</span>')
, QMORE(strip_tags(f.title),50) , QMORE(strip_tags(f.title),50)
, f.tableName , f.tableName
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment