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 @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

- Fix left side menu url (with `DIR_MARKETPLACE`)
- Fix default value format for multiple dropdown (GLPIObject)
- Fix bad SQL query for `GenericObject`
- Fixed a bug that prevented the creation of additional field data for objects
Expand Down
2 changes: 1 addition & 1 deletion inc/menu.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static function getMenuContent()

$menu = [
'title' => self::getMenuName(),
'page' => $CFG_GLPI['root_doc'] . "/plugins/fields/front/container.php",
'page' => PluginFieldsContainer::getSearchURL(false),
'icon' => PluginFieldsContainer::getIcon(),
];

Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function plugin_init_fields()

// add entry to configuration menu (only if user has read access to config)
if (Session::haveRight('config', READ)) {
$PLUGIN_HOOKS['menu_toadd']['fields'] = ['config' => 'PluginFieldsMenu'];
$PLUGIN_HOOKS['menu_toadd']['fields'] = ['config' => PluginFieldsMenu::class];
}

// add tabs to itemtypes
Expand Down