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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.0] - 2026-04-27

### Add

- split tree dropdown question

## [1.0.1] - 2026-01-07

### Fixed
Expand All @@ -13,5 +19,3 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- LDAP select question type: inactive LDAP directories can no longer be selected
- LDAP select question type: fix select not working on helpdesk
- LDAP select question type: fix filtering not being applied


5 changes: 5 additions & 0 deletions advancedforms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
<author>Teclib'</author>
</authors>
<versions>
<version>
<num>1.1.0</num>
<compatibility>~11.0.0</compatibility>
<download_url>https://github.com/pluginsGLPI/advancedforms/releases/download/1.1.0/glpi-advancedforms-1.1.0.tar.bz2</download_url>
</version>
<!-- Add as many version tag you want -->
<version>
<num>1.0.1</num>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use GlpiPlugin\Advancedforms\Service\InitManager;

/** @phpstan-ignore theCodingMachineSafe.function (safe to assume this isn't already defined) */
define('PLUGIN_ADVANCEDFORMS_VERSION', '1.0.1');
define('PLUGIN_ADVANCEDFORMS_VERSION', '1.1.0');

// Minimal GLPI version, inclusive
/** @phpstan-ignore theCodingMachineSafe.function (safe to assume this isn't already defined) */
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Dropdown/LdapDropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private function executeLdapSearch(
$entries = ldap_get_entries($ds, $result);

// openldap return 4 for Size limit exceeded
$limitexceeded = in_array(ldap_errno($ds), [4, 11]);
$limitexceeded = in_array(ldap_errno($ds), [4, 11], true);

if ($limitexceeded) {
trigger_error("LDAP size limit exceeded", E_USER_WARNING);
Expand Down