Email field in Commerce Area small
This commit is contained in:
parent
ecf7824c95
commit
5520890688
4 changed files with 4 additions and 3 deletions
|
|
@ -9,6 +9,7 @@
|
|||
- fix: Change Owner in Security Tab in Assets is not always Working
|
||||
- fix: API error - definition
|
||||
- fix: Calendar without i8n
|
||||
- fix: Email field in Commerce Area small
|
||||
- All toolbar icons now have a class called "toolbarIcon" so they can be
|
||||
styled by external CSS.
|
||||
- Profile fields and categories and have confirmation boxes when deleting using the side menu
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ sub prepend {
|
|||
$self = shift;
|
||||
$name = shift;
|
||||
|
||||
return "~Payment~".$self->namespace."~".$name;
|
||||
return "Payment_".$self->namespace."_".$name;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@ sub prepend {
|
|||
$self = shift;
|
||||
$name = shift;
|
||||
|
||||
return "~Shipping~".$self->namespace."~".$name;
|
||||
return "Shipping_".$self->namespace."_".$name;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -821,7 +821,7 @@ sub www_editCommerceSettingsSave {
|
|||
|
||||
# Store the plugin configuration data in a special table for security and the general settings in the
|
||||
# normal settings table for easy access.
|
||||
if (/~([^~]*)~([^~]*)~([^~]*)/) {
|
||||
if (/([^_]*)_([^_]*)_([^_]*)/) {
|
||||
WebGUI::Commerce::setCommerceSetting($session,{
|
||||
type => $1,
|
||||
namespace => $2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue