shortcut overrides display titles instead of field names
This commit is contained in:
parent
c0cd862362
commit
3168aec473
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
7.5.14
|
||||
- fixed: Rich editor collateral image uploader is broken
|
||||
- fixed: ems 2.0: tickets get created as badges also
|
||||
- shortcut overrides display titles instead of field names
|
||||
- fixed: Non-admin users can now add Gallery assets
|
||||
- fixed: Thingy Data now retains File and Images if they aren't explicitly deleted
|
||||
- fixed: Rich Editor no longer makes other form controls show up as code in Safari 3
|
||||
|
|
|
|||
|
|
@ -369,8 +369,9 @@ sub getOverridesList {
|
|||
foreach my $definition (@{$shortcut->definition($self->session)}) {
|
||||
foreach my $prop (keys %{$definition->{properties}}) {
|
||||
next if $definition->{properties}{$prop}{fieldType} eq 'hidden';
|
||||
next if $definition->{properties}{$prop}{label} eq '';
|
||||
$output .= '<tr>';
|
||||
$output .= '<td class="tableData"><a href="'.$self->getUrl('func=editOverride;fieldName='.$prop).'">'.$prop.'</a></td>';
|
||||
$output .= '<td class="tableData">'.$definition->{properties}{$prop}{label}.'</td>';
|
||||
$output .= '<td class="tableData">';
|
||||
$output .= $self->session->icon->edit('func=editOverride;fieldName='.$prop,$self->get("url"));
|
||||
$output .= $self->session->icon->delete('func=deleteOverride;fieldName='.$prop,$self->get("url")) if exists $overrides{overrides}{$prop};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue