Changesets: LimeSurvey

master deb0bbd3

2024-02-01 14:04

LimeSurvey Translations Bot


Details Diff
Updated translation: German by c_schmitz
Updated translation: Portuguese (Portugal) by samarta
mod - locale/_template/limesurvey.pot Diff File
mod - locale/de/de.mo Diff File
mod - locale/pt/pt.mo Diff File

master ca7224a2

2024-02-01 14:04

c_schmitz


Details Diff
Dev Text fixes
mod - application/core/plugins/AuthLDAP/AuthLDAP.php Diff File
mod - application/libraries/PluginManager/PluginManager.php Diff File
mod - application/views/surveyAdministration/partial/topbar/surveyTopbarRight_view.php Diff File

5.x 2558cd03

2024-02-01 13:55

LimeSurvey Translations Bot


Details Diff
Updated translation: Persian by c_schmitz
Updated translation: Hindi by KapilSabarwal
Updated translation: Hungarian by kkd, tkazinczy
Updated translation: Georgian by giorgi
Updated translation: Lithuanian by Morta
Updated translation: Latvian by anorkusa, daugavietis
Updated translation: Norwegian (Bokmål) by kjnerhus
Updated translation: Portuguese (Portugal) by samarta
Updated translation: Portuguese (Brazil) by phph
Updated translation: Romanian by mihaela.grigore
Updated translation: Slovenian by c_schmitz
Updated translation: Spanish (Argentina) (Informal) by kwelladm
Updated translation: Serbian (Latin script) by matthewpulis, wakizashi
Updated translation: Chinese (Taiwan) (Traditional) by Yu-Jyun Guo
mod - locale/_template/limesurvey.pot Diff File
mod - locale/es-AR-informal/es-AR-informal.mo Diff File
mod - locale/fa/fa.mo Diff File
mod - locale/hi/hi.mo Diff File
mod - locale/hu/hu.mo Diff File
mod - locale/ka/ka.mo Diff File
mod - locale/lt/lt.mo Diff File
mod - locale/lv/lv.mo Diff File
mod - locale/nb/nb.mo Diff File
mod - locale/pt-BR/pt-BR.mo Diff File
mod - locale/pt/pt.mo Diff File
mod - locale/ro/ro.mo Diff File
mod - locale/sl/sl.mo Diff File
mod - locale/zh-Hant-TW/zh-Hant-TW.mo Diff File

master 602ebbb4

2024-02-01 13:54

LimeSurvey Translations Bot


Details Diff
Updated translation: Arabic by mkhasawneh, Shatha
Updated translation: Finnish by Jmantysalo
Updated translation: Hungarian by kkd
Updated translation: Japanese by d_inoue, nomoto
Updated translation: Norwegian (Bokmål) by pmonstad
Updated translation: Portuguese (Portugal) by samarta
mod - locale/_template/limesurvey.pot Diff File
mod - locale/ar/ar.mo Diff File
mod - locale/fi/fi.mo Diff File
mod - locale/hu/hu.mo Diff File
mod - locale/ja/ja.mo Diff File
mod - locale/nb/nb.mo Diff File
mod - locale/pt/pt.mo Diff File

master a908e85d

2024-01-31 18:59

Bert Hankes

Committer: GitHub


Details Diff
Fixed 19217: PHP8 Error Type NULL (#3666)

* Fixed: 19217 Update Survey.php

$attdescriptiondata = decodeTokenAttributes($this->attributedescriptions ?? '');
change to
$attdescriptiondata = decodeTokenAttributes($this->attributedescriptions ?? []);
In PHP 7 it is a warning
in PHP 8 it's a 500! parameter key() must be an array!!

* Fixed 10217: Update common_helper.php

$aSavedExtraTokenFields = Survey::model()->findByPk($surveyid)->tokenAttributes;
change to:
$aSavedExtraTokenFields = Survey::model()->findByPk($surveyid)->tokenAttributes ?? [];
In PHP 7 it is a warning
in PHP 8 it's a 500! $aSavedExtraTokenFields is not allowed to be NULL anymore! in function array_intersect_key()!

* Update common_helper.php

Corrected code line 2946

* 19217: Update Survey.php

revert back to from ?? [] to ?? '' on line 667

* 19217: Update Survey.php

Extra check on first element of array
If it is not an array set array to NULL

* 19217: Update Survey.php

Final edit after line 667:
Check on array after reset(array)

* 19217: Update Survey.php

And some missing spaces...
this one should pass!!!
Affected Issues
19217
mod - application/helpers/common_helper.php Diff File
mod - application/models/Survey.php Diff File

5.x 17ae125f

2024-01-31 16:35

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19325: When deleting a token the participant_id is being logged while it should be the token_id (03685)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19325

5.x 17ae125f

2024-01-31 16:35

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19325: When deleting a token the participant_id is being logged while it should be the token_id (03685)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19325

master e78bedb2

2024-01-31 16:31

DenisChenu

Committer: GitHub


Details Diff
Fixed issue 19347: No generation of new user within first LDAP login (#3711) Affected Issues
19347
mod - application/core/plugins/AuthLDAP/AuthLDAP.php Diff File

master e78bedb2

2024-01-31 16:31

DenisChenu

Committer: GitHub


Details Diff
Fixed issue 19347: No generation of new user within first LDAP login (#3711) Affected Issues
19347
mod - application/core/plugins/AuthLDAP/AuthLDAP.php Diff File

5.x dff6339f

2024-01-31 16:29

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19290: Wrong Row Total in Array (Texts) (03664)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19290
mod - assets/packages/questions/arraynumeric/scripts/array-totalsum.js Diff File
mod - assets/packages/questions/arraynumeric/scripts/array-totalsum.min.js Diff File

5.x dff6339f

2024-01-31 16:29

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19290: Wrong Row Total in Array (Texts) (03664)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19290
mod - assets/packages/questions/arraynumeric/scripts/array-totalsum.js Diff File
mod - assets/packages/questions/arraynumeric/scripts/array-totalsum.min.js Diff File

master 41993c4a

2024-01-31 16:19

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19253: CSV injection in export quota (03677)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19253
mod - application/controllers/QuotasController.php Diff File
add - application/core/LSYii_NonFormulaValidator.php Diff File
mod - application/helpers/common_helper.php Diff File
mod - application/models/Quota.php Diff File

master 41993c4a

2024-01-31 16:19

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19253: CSV injection in export quota (03677)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19253
mod - application/controllers/QuotasController.php Diff File
add - application/core/LSYii_NonFormulaValidator.php Diff File
mod - application/helpers/common_helper.php Diff File
mod - application/models/Quota.php Diff File

5.x 11b12409

2024-01-31 16:01

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19248: When deleting a token through the model, the Audi… …tLog beforeDeleteToken event fails (#3681)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19248
mod - application/core/plugins/AuditLog/AuditLog.php Diff File

5.x 11b12409

2024-01-31 16:01

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19248: When deleting a token through the model, the Audi… …tLog beforeDeleteToken event fails (#3681)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19248
mod - application/core/plugins/AuditLog/AuditLog.php Diff File

master 9dc454b2

2024-01-30 19:13

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19320: Error after accessing to response export view (#3683)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19320
mod - application/views/surveyAdministration/partial/topbar/surveyTopbarRight_view.php Diff File

master 9dc454b2

2024-01-30 19:13

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19320: Error after accessing to response export view (#3683)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19320
mod - application/views/surveyAdministration/partial/topbar/surveyTopbarRight_view.php Diff File

master 727b63e1

2024-01-30 18:02

mohabmes

Committer: GitHub


Details Diff
Fixed issue LA-37: Set the timeout for notifications to 10s (#3715)
mod - assets/packages/usermanagement/js/usermanagement.js Diff File

5.x fb69f3fa

2024-01-30 15:22

DenisChenu

Committer: GitHub


Details Diff
Fixed issue #19368: [security] Simple admin can add XSS on adminemail (#3705)
mod - application/models/Survey.php Diff File
mod - themes/survey/vanilla/views/layout_errors.twig Diff File

5.x fb69f3fa

2024-01-30 15:22

DenisChenu

Committer: GitHub


Details Diff
Fixed issue #19368: [security] Simple admin can add XSS on adminemail (#3705)
mod - application/models/Survey.php Diff File
mod - themes/survey/vanilla/views/layout_errors.twig Diff File

master 1c37494f

2024-01-30 15:15

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19313: No warning list when import same question code (#3695)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19313
mod - application/controllers/QuestionAdministrationController.php Diff File

master 1c37494f

2024-01-30 15:15

Gabriel Jenik

Committer: GitHub


Details Diff
Fixed issue 19313: No warning list when import same question code (#3695)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
Affected Issues
19313
mod - application/controllers/QuestionAdministrationController.php Diff File

5.x 81570a87

2024-01-30 11:21

p_teichmann


Details Diff
Release 5.6.53+240131
mod - application/config/version.php Diff File
mod - docs/release_notes.txt Diff File

master 3f3efdff

2024-01-30 11:17

p_teichmann


Details Diff
Release 6.4.4+240130
mod - application/config/version.php Diff File
mod - docs/release_notes.txt Diff File

5.x 33e6cd32

2024-01-30 11:14

LimeSurvey Translations Bot


Details Diff
Dev Automatic translation update
mod - locale/_template/limesurvey.pot Diff File
 First  Prev  1 2 3 ... 30 31 32 33 34 35 36 ... 150 ... 300 ... 450 ... 600 ... 750 ... 900 ... 1050 ... 1200 ... 1350 ... 1472 1473 1474  Next  Last