Forward port of empty Matrix Listing productName.
I did not bring in the 7.3.20 upgrade script, because I'm not sure how the branch is supposed to work.
This commit is contained in:
parent
4f570b67c9
commit
fa1499cf06
2 changed files with 4 additions and 2 deletions
|
|
@ -52,6 +52,8 @@
|
|||
7.3.20
|
||||
- fix: Deactivated Users Subscriptions (perlDreamer Consulting, LLC)
|
||||
http://www.webgui.org/bugs/tracker/deactivated-users-subscriptions
|
||||
- fix: Matrix: filling out no fields leads to unapprovable listing (perlDreamer Consulting, LLC)
|
||||
http://www.webgui.org/bugs/tracker/matrix-filling-out-no-fields-leads-to-unapprovable-listing
|
||||
|
||||
7.3.19
|
||||
- Fixed a formatting problem in the workflow editor screen.
|
||||
|
|
|
|||
|
|
@ -555,7 +555,7 @@ sub www_editListing {
|
|||
);
|
||||
$f->text(
|
||||
-name=>"productName",
|
||||
-value=>$listing->{productName},
|
||||
-value=>$listing->{productName} || 'Undefined',
|
||||
-label=>$i18n->get('product name'),
|
||||
-hoverHelp=>$i18n->get('product name description'),
|
||||
-maxLength=>25
|
||||
|
|
@ -683,7 +683,7 @@ sub www_editListingSave {
|
|||
my %data = (
|
||||
listingId => $self->session->form->process("listingId"),
|
||||
lastUpdated => $self->session->datetime->time(),
|
||||
productName => $self->session->form->process("productName"),
|
||||
productName => $self->session->form->process("productName") || 'Undefined',
|
||||
productUrl => $self->session->form->process("productUrl"),
|
||||
manufacturerName => $self->session->form->process("manufacturerName"),
|
||||
manufacturerUrl => $self->session->form->process("manufacturerUrl"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue