Skip to content

Commit

Permalink
[#27799] Php errors in smart search content map tab in Hathor
Browse files Browse the repository at this point in the history
  • Loading branch information
andreatarr authored and chdemko committed Jan 21, 2012
1 parent 22f1bc0 commit 460dffb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));

$lang = &JFactory::getLanguage();
$lang = JFactory::getLanguage();
JText::script('COM_FINDER_INDEX_CONFIRM_PURGE_PROMPT');
JText::script('COM_FINDER_INDEX_CONFIRM_DELETE_PROMPT');
?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));

$lang = &JFactory::getLanguage();
$lang = JFactory::getLanguage();
JText::script('COM_FINDER_MAPS_CONFIRM_DELETE_PROMPT');
?>

Expand Down Expand Up @@ -102,7 +102,7 @@
<td>
<?php
$key = FinderHelperLanguage::branchSingular($item->title);
echo $lang->hasKey($key) ? JText::_($key) : $item->title;
$title = $lang->hasKey($key) ? JText::_($key) : $item->title;
?>
<?php if ($this->state->get('filter.branch') == 1 && $item->num_children) : ?>
<a href="#" onclick="document.id('filter_branch').value='<?php echo (int) $item->id;?>';document.adminForm.submit();" title="<?php echo JText::_('COM_FINDER_MAPS_BRANCH_LINK'); ?>">
Expand Down
1 change: 1 addition & 0 deletions installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ $ -> Language fix or change

21-Jan-2012 Christophe Demko
# [#27798] Tracker #27896 messed up CSS in Hathor control panel (Andrea Tarr)
# [#27799] Php errors in smart search content map tab in Hathor (Andrea Tarr)

20-Jan-2012 Christophe Demko
# [#27790] *Error on uninstalling language pack since 2.5beta
Expand Down

0 comments on commit 460dffb

Please sign in to comment.