1) Have smart search enabled incl. "categories" finder plugin
2) Edit a category: change title/alias/description, but do not touch state or access. Save.
3) Search for a relevant keyword to get this category in search results
Updated title/alias/description of the category in search result
Old title/alias/descriptipon
I believe a closing bracket should be moved from line 136 to line 133 in categories.php finder plugin.
if (!$isNew && $this->old_access != $row->access)
{
// Process the change.
$this->itemAccessChange($row);
// Reindex the category item.
$this->reindex($row->id);
}
to become
if (!$isNew && $this->old_access != $row->access)
{
// Process the change.
$this->itemAccessChange($row);
}
// Reindex the category item.
$this->reindex($row->id);
Looks like that an issue is opened automatically http://issues.joomla.org/tracker/joomla-cms/7769.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-08-25 20:04:25 |
Closed_By | ⇒ | zero-24 |
Created a PR for this issue #7769.
This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/7711.