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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed

- Fix tag search
- Fix `webapplication` plugin integration

## [2.14.3] - 2025-12-22

Expand Down
5 changes: 3 additions & 2 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
use Glpi\Form\Migration\TypesConversionMapper;
use Glpi\Form\QuestionType\QuestionTypesManager;
use Glpi\Plugin\Hooks;
use GlpiPlugin\Webapplications\Webapplication;

use function Safe\define;

Expand Down Expand Up @@ -92,8 +93,8 @@ function plugin_init_tag()
}

// Plugin Webapplication
if (Plugin::isPluginActive('webapplications')) {
$CFG_GLPI['plugin_tag_itemtypes'][__s('Assets')][] = 'PluginWebapplicationsWebapplication';
if (Plugin::isPluginActive('webapplications') && class_exists(Webapplication::class)) {
$CFG_GLPI['plugin_tag_itemtypes'][__s('Assets')][] = Webapplication::class;
}

// Plugin fusioninventory
Expand Down