Skip to content

Commit

Permalink
Merge branch 'staging' into fix-route-link-ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 committed Apr 27, 2019
2 parents 05226d3 + 94a068f commit 3194253
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/components/com_templates/models/template.php
Expand Up @@ -330,8 +330,8 @@ protected function fixTemplateName()

foreach ($files as $file)
{
$newFile = str_replace($oldName, $newName, $file);
$result = JFile::move($file, $newFile) && $result;
$newFile = '/' . str_replace($oldName, $newName, basename($file));
$result = JFile::move($file, dirname($file) . $newFile) && $result;
}

// Edit XML file
Expand Down
2 changes: 2 additions & 0 deletions administrator/templates/isis/css/template-rtl.css
Expand Up @@ -9111,11 +9111,13 @@ input:focus,
column-gap: 15px;
}
#menu-assignment .menu-links > li {
display: inline-block;
vertical-align: top;
margin-bottom: 15px;
width: 100%;
list-style: none;
page-break-inside: avoid;
break-inside: avoid;
}
#menu-assignment .menu-links-block {
background-color: #fafafa;
Expand Down
2 changes: 2 additions & 0 deletions administrator/templates/isis/css/template.css
Expand Up @@ -9111,11 +9111,13 @@ input:focus,
column-gap: 15px;
}
#menu-assignment .menu-links > li {
display: inline-block;
vertical-align: top;
margin-bottom: 15px;
width: 100%;
list-style: none;
page-break-inside: avoid;
break-inside: avoid;
}
#menu-assignment .menu-links-block {
background-color: #fafafa;
Expand Down
2 changes: 2 additions & 0 deletions administrator/templates/isis/less/pages/_com_templates.less
Expand Up @@ -12,11 +12,13 @@
-webkit-column-gap: 15px;
column-gap: 15px;
> li {
display: inline-block;
vertical-align: top;
margin-bottom: 15px;
width: 100%;
list-style: none;
page-break-inside: avoid;
break-inside: avoid;
}
}
.menu-links-block {
Expand Down
11 changes: 11 additions & 0 deletions components/com_contact/views/category/tmpl/default.xml
Expand Up @@ -327,6 +327,17 @@

<fieldset name="contact" label="COM_CONTACT_BASIC_OPTIONS_FIELDSET_LABEL"
addfieldpath="/administrator/components/com_fields/models/fields">

<field
name="contact_layout"
type="componentlayout"
label="JGLOBAL_FIELD_LAYOUT_LABEL"
description="JGLOBAL_FIELD_LAYOUT_DESC"
menuitems="true"
extension="com_contact"
view="contact"
/>

<field
name="presentation_style"
type="list"
Expand Down

0 comments on commit 3194253

Please sign in to comment.