Skip to content

Commit

Permalink
Case mismatch in function call
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmayer committed Oct 2, 2016
1 parent 4ade612 commit 80f6fdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion administrator/components/com_finder/tables/filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public function publish($pks = null, $state = 1, $userId = 0)
// Checkin the rows.
foreach ($pks as $pk)
{
$this->checkin($pk);
$this->checkIn($pk);
}
}

Expand Down
4 changes: 2 additions & 2 deletions components/com_finder/helpers/html/filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -394,14 +394,14 @@ public static function select($idxQuery, $options)

// Build a node.
$html .= '<div class="controls finder-selects">';
$html .= '<label for="tax-' . JFilterOutput::stringUrlSafe($bv->title) . '" class="control-label">';
$html .= '<label for="tax-' . JFilterOutput::stringURLSafe($bv->title) . '" class="control-label">';
$html .= JText::sprintf('COM_FINDER_FILTER_BRANCH_LABEL', JText::_(FinderHelperLanguage::branchSingular($bv->title)));
$html .= '</label>';
$html .= '<br />';
$html .= JHtml::_(
'select.genericlist',
$branches[$bk]->nodes, 't[]', 'class="inputbox advancedSelect"', 'id', 'title', $active,
'tax-' . JFilterOutput::stringUrlSafe($bv->title)
'tax-' . JFilterOutput::stringURLSafe($bv->title)
);
$html .= '</div>';
}
Expand Down
6 changes: 3 additions & 3 deletions components/com_finder/views/search/view.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function display($tpl = null)
// Configure the pathway.
if (!empty($query->input))
{
$app->getPathWay()->addItem($this->escape($query->input));
$app->getPathway()->addItem($this->escape($query->input));
}

// Push out the view data.
Expand Down Expand Up @@ -229,12 +229,12 @@ protected function prepareDocument($query)
// Configure the document meta-keywords.
if (!empty($query->highlight))
{
$this->document->setMetadata('keywords', implode(', ', $query->highlight));
$this->document->setMetaData('keywords', implode(', ', $query->highlight));
}

if ($this->params->get('robots'))
{
$this->document->setMetadata('robots', $this->params->get('robots'));
$this->document->setMetaData('robots', $this->params->get('robots'));
}

// Add feed link to the document head.
Expand Down

0 comments on commit 80f6fdb

Please sign in to comment.