Skip to content

Commit fc971ea

Browse files
authored
Fix NetworkName ip addresses injection (#511)
* Fix NetworkName ip addresses injection * Update CHANGELOG
1 parent d68feb7 commit fc971ea

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [unreleased] -
8+
## [unreleased]
99

1010
### Fixed
11+
12+
- Fix `NetworkName` ip adresses injection
1113
- Fix injection to the `date_expiration` of certificates
1214
- Fix the `Task completed` message during plugin update
1315

@@ -17,7 +19,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1719

1820
- Fix `License` injection
1921

20-
2122
## [2.14.2] - 2025-08-22
2223

2324
### Fixed

inc/networknameinjection.class.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ public function getOptions($primary_type = '')
7676
$notimportable = [20, 21];
7777

7878
$options['ignore_fields'] = array_merge($blacklist, $notimportable);
79-
$options['displaytype'] = ["dropdown" => [12]];
79+
$options['displaytype'] = [
80+
"dropdown" => [12],
81+
"text" => [13],
82+
];
8083

8184
return PluginDatainjectionCommonInjectionLib::addToSearchOptions($tab, $options, $this);
8285
}

0 commit comments

Comments
 (0)