Skip to content

Commit

Permalink
Merge pull request #386 from tyrant88/tyrant88-patch-145
Browse files Browse the repository at this point in the history
little offline precision & version bump
  • Loading branch information
tyrant88 authored Dec 18, 2023
2 parents f509e05 + a39eca6 commit e5003d3
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog
## Version 6.10.1 (2023-12-18)

- keypress event replaced by keyup
- Change in respect to accessdenied AddOn

## Version 6.9.10 (2023-10-21)

- Security Fix: escape Suchbegriffe

## Version 6.9.9 (2023-09-23)

- Fix indexing wenn hinter Proxy ;-)
- Code Style (CS)

Expand Down
8 changes: 4 additions & 4 deletions lib/search_it.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ public function indexArticle($_id, $_clang = false, $clearCache = false)
$return[$langID] = SEARCH_IT_ART_IDNOTFOUND;
continue;
}
//EP to check if Article should be indexed

//EP to check if Article should be indexed
$doindex = rex_extension::registerPoint(new \rex_extension_point('SEARCH_IT_INDEX_ARTICLE', true, [
'article' => $article
]));
Expand All @@ -264,8 +264,8 @@ public function indexArticle($_id, $_clang = false, $clearCache = false)
$return[$langID] = SEARCH_IT_ART_EXCLUDED;
continue;
}
if (is_object($article) and ($article->isOnline() or rex_addon::get('search_it')->getConfig('indexoffline')) and $_id != 0

if (is_object($article) and ($article->isOnline() or (rex_addon::get('search_it')->getConfig('indexoffline') AND 0 === $article->getValue('status'))) and $_id != 0
and ($_id != rex_article::getNotfoundArticleId() or $_id == rex_article::getSiteStartArticleId())) {

if (!$dont_use_socket) {
Expand Down
2 changes: 1 addition & 1 deletion package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: search_it
version: '6.9.10'
version: '6.10.1'
author: Friends Of REDAXO
supportpage: https://github.com/FriendsOfREDAXO/search_it

Expand Down
2 changes: 1 addition & 1 deletion plugins/autocomplete/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: search_it/autocomplete
version: '6.9.10'
version: '6.10.1'
author: Manétage

title: 'translate:search_it_autocomplete_plugin_title'
Expand Down
2 changes: 1 addition & 1 deletion plugins/documentation/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: search_it/documentation
version: '6.9.10'
version: '6.10.1'
author: Friends Of REDAXO

title: 'translate:search_it_documentation_title'
Expand Down
2 changes: 1 addition & 1 deletion plugins/plaintext/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: search_it/plaintext
version: '6.9.10'
version: '6.10.1'
author: Friends Of REDAXO

title: 'translate:search_it_plaintext_title'
Expand Down
2 changes: 1 addition & 1 deletion plugins/stats/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: search_it/stats
version: '6.9.10'
version: '6.10.1'
author: Friends Of REDAXO

title: 'translate:search_it_stats_plugin_title'
Expand Down

0 comments on commit e5003d3

Please sign in to comment.