Skip to content

Commit c175bdd

Browse files
committed
Merge branch 'release/2.12.3' into support/2.12.0
2 parents e03d8ec + e14a585 commit c175bdd

12 files changed

+1537
-15
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
<a name="v2.12.3"></a>
2+
## [v2.12.3](https://github.com/pluginsglpi/formcreator/compare/v2.12.2..v2.12.3) (2021-11-04)
3+
4+
5+
### Bug Fixes
6+
7+
* color of counters lost ([5834f96f](https://github.com/pluginsglpi/formcreator/commit/5834f96f))
8+
* css minify via GLPI's CLI tool broken ([43adbfc8](https://github.com/pluginsglpi/formcreator/commit/43adbfc8))
9+
* menu unreadable in service catalog ([2790dac8](https://github.com/pluginsglpi/formcreator/commit/2790dac8))
10+
* **abstracttarget:** conflicting dropdowns ([57b775fb](https://github.com/pluginsglpi/formcreator/commit/57b775fb))
11+
* **answer:** missing default value in schema ([195ef446](https://github.com/pluginsglpi/formcreator/commit/195ef446))
12+
* **category:** completename rendered instead of short name ([82f50ccb](https://github.com/pluginsglpi/formcreator/commit/82f50ccb)), closes [#2424](https://github.com/pluginsglpi/formcreator/issues/2424)
13+
* **condition:** ensure form object is loaded ([d7c3c2c9](https://github.com/pluginsglpi/formcreator/commit/d7c3c2c9))
14+
* **descriptinfield:** list rendering ([0e4421da](https://github.com/pluginsglpi/formcreator/commit/0e4421da))
15+
* **dropdownfield:** group restriction inaccurate ([ab83f34d](https://github.com/pluginsglpi/formcreator/commit/ab83f34d))
16+
* **dropdownfield:** itil category is entity assignable ([26d8352a](https://github.com/pluginsglpi/formcreator/commit/26d8352a))
17+
* **form:** allow admins to testforms ([e3462d5b](https://github.com/pluginsglpi/formcreator/commit/e3462d5b))
18+
* **form:** allow condition evaluation on disabled forms for admins ([65c46bd7](https://github.com/pluginsglpi/formcreator/commit/65c46bd7))
19+
* **form:** export of entity / category name ([18f9611c](https://github.com/pluginsglpi/formcreator/commit/18f9611c))
20+
* **form:** handling duplication failure when no form to rename ([351a36d3](https://github.com/pluginsglpi/formcreator/commit/351a36d3))
21+
* **form:** invaldiate opcache ([630e5239](https://github.com/pluginsglpi/formcreator/commit/630e5239))
22+
* **form_language:** vertical view does not works ([1b180d27](https://github.com/pluginsglpi/formcreator/commit/1b180d27))
23+
* **formanswer:** unloadded objects when validating ([b4891be4](https://github.com/pluginsglpi/formcreator/commit/b4891be4))
24+
* **glpiselectfield:** tree settings of entity question ([48053f55](https://github.com/pluginsglpi/formcreator/commit/48053f55))
25+
* **glpiselectfield, dropdownfield:** filter by helpdesk visibility only in simplified interface ([1cb5f346](https://github.com/pluginsglpi/formcreator/commit/1cb5f346))
26+
* **install:** populate issues table on upgrade ([76550d21](https://github.com/pluginsglpi/formcreator/commit/76550d21))
27+
* **issue:** SQL escaping problem with text fields ([d589745e](https://github.com/pluginsglpi/formcreator/commit/d589745e))
28+
* **issue:** answers with multiple tickets ([c77be76f](https://github.com/pluginsglpi/formcreator/commit/c77be76f))
29+
* **locales:** wrong language used in service catalog ([0327d520](https://github.com/pluginsglpi/formcreator/commit/0327d520))
30+
31+
32+
### Features
33+
34+
* **glpiselectfield:** restrict tickets in simplified interface ([8a901f48](https://github.com/pluginsglpi/formcreator/commit/8a901f48))
35+
* **targetticket:** link to a ticket from a question ([a563d11e](https://github.com/pluginsglpi/formcreator/commit/a563d11e))
36+
37+
38+
139
## [2.12.2](https://github.com/pluginsglpi/formcreator/compare/v2.12.1...v2.12.2) (2021-09-14)
240

341

RoboFile.php

+1
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ protected function getVersionTagFromXML($versionToSearch) {
286286
* Update the changelog
287287
*/
288288
public function updateChangelog() {
289+
return;
289290
exec("node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s", $output, $retCode);
290291
if ($retCode > 0) {
291292
throw new Exception("Failed to update the changelog");

ajax/counter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
include ('../../../inc/includes.php');
3333
// Check a user is logged in
34-
if (true || Session::getLoginUserID() === false) {
34+
if (Session::getLoginUserID() === false) {
3535
http_response_code(403);
3636
die();
3737
}

0 commit comments

Comments
 (0)