Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<option value="a.state ASC">JSTATUS_ASC</option>
<option value="a.state DESC">JSTATUS_DESC</option>
<option value="a.name ASC">JGLOBAL_NAME_ASC</option>
<option value="a.name DESC">JGLOBAL_NAME_DEC</option>
<option value="a.name DESC">JGLOBAL_NAME_DESC</option>
<option value="category_title ASC">JCATEGORY_ASC</option>
<option value="category_title DESC">JCATEGORY_DESC</option>
<option value="a.sticky ASC">COM_BANNERS_HEADING_STICKY_ASC</option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<field
name="featured"
type="list"
label="JOPTION_SELECT_FEATURED"
onchange="this.form.submit();"
default=""
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<field
name="featured"
type="list"
label="JOPTION_SELECT_FEATURED"
onchange="this.form.submit();"
default=""
>
Expand All @@ -23,6 +24,7 @@
<field
name="stage"
type="workflowstage"
label="JOPTION_SELECT_STAGE"
onchange="this.form.submit();"
activeonly="true"
extension="com_content"
Expand All @@ -33,6 +35,7 @@
<field
name="condition"
type="workflowcondition"
label="JOPTION_SELECT_CONDITION"
onchange="this.form.submit();"
extension="com_content"
>
Expand Down Expand Up @@ -64,6 +67,7 @@
<field
name="author_id"
type="author"
label="JOPTION_SELECT_AUTHOR"
multiple="true"
layout="joomla.form.field.list-fancy-select"
hint="JOPTION_SELECT_AUTHOR"
Expand Down Expand Up @@ -96,6 +100,7 @@
<field
name="level"
type="integer"
label="JOPTION_SELECT_MAX_LEVELS"
first="1"
last="10"
step="1"
Expand Down
2 changes: 1 addition & 1 deletion layouts/joomla/button/transition-button.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<?php endif; ?>

title="<?php echo HTMLHelper::_('tooltipText', Text::_($tipTitle ? : $title), '', 0); ?>"
data-content="<?php echo HTMLHelper::_('tooltipText', Text::_($title), '', 0); ?>"
data-content="<?php echo HTMLHelper::_('tooltipText', $title, '', 0); ?>"
data-placement="top"
onclick="Joomla.toggleAllNextElements(this, 'd-none')"
>
Expand Down