ejpri...@users.adullact.net
unread,Feb 25, 2026, 6:34:08 AM (8 days ago) Feb 25Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to openmairie...@googlegroups.com
Author: ejpritchard
Date: 2026-02-25 12:34:06 +0100 (Wed, 25 Feb 2026)
New Revision: 5488
Modified:
openmairie_exemple/branches/4.11.0-develop/
openmairie_exemple/branches/4.11.0-develop/HISTORY.txt
openmairie_exemple/branches/4.11.0-develop/core/om_formulaire.class.php
Log:
merge : fix-bug-formulaire-array-offset vers 4.11.0-develop
Index: openmairie_exemple/branches/4.11.0-develop
===================================================================
--- openmairie_exemple/branches/4.11.0-develop 2026-02-25 11:21:34 UTC (rev 5487)
+++ openmairie_exemple/branches/4.11.0-develop 2026-02-25 11:34:06 UTC (rev 5488)
Property changes on: openmairie_exemple/branches/4.11.0-develop
___________________________________________________________________
Modified: svn:mergeinfo
## -42,6 +42,7 ##
/openmairie_exemple/branches/fix-bug-dbform-resubmit-id:5448-5483
/openmairie_exemple/branches/fix-bug-filestorage-var-export:5465-5485
/openmairie_exemple/branches/fix-bug-form-array-key:5446-5480
+/openmairie_exemple/branches/fix-bug-formulaire-array-offset:5467-5487
/openmairie_exemple/branches/gen_doc_rf:3556-3557
/openmairie_exemple/branches/inversion_controle_permissions:3699-3727
/openmairie_exemple/branches/om-tests_local_mailhost:3694-3714
Modified: openmairie_exemple/branches/4.11.0-develop/HISTORY.txt
===================================================================
--- openmairie_exemple/branches/4.11.0-develop/HISTORY.txt 2026-02-25 11:21:34 UTC (rev 5487)
+++ openmairie_exemple/branches/4.11.0-develop/HISTORY.txt 2026-02-25 11:34:06 UTC (rev 5488)
@@ -9,6 +9,7 @@
- PHP Warning: Undefined array key "filename" in core/om_formulaire.class.php on line 4346
- PHP Warning: Undefined array key "form_resubmit_identifiers" in core/om_dbform.class.php on line 3915
- PHP Warning: var_export does not handle circular references in core/om_filestorage.class.php on line 444
+ - PHP Warning: Trying to access array offset on value of type null in core/om_formulaire.class.php on line 2098
* Correction : Optimiser les mots-clés RobotFramework générés par le générateur. Ticket #10856.
Modified: openmairie_exemple/branches/4.11.0-develop/core/om_formulaire.class.php
===================================================================
--- openmairie_exemple/branches/4.11.0-develop/core/om_formulaire.class.php 2026-02-25 11:21:34 UTC (rev 5487)
+++ openmairie_exemple/branches/4.11.0-develop/core/om_formulaire.class.php 2026-02-25 11:34:06 UTC (rev 5488)
@@ -2095,7 +2095,7 @@
echo " type=\"".$this->type[$champ]."\"";
echo " name=\"".$champ."\"";
echo " id=\"".$champ."\" ";
- echo " value=\"".$this->val[$champ]."\"";
+ echo " value=\"".($this->val[$champ] ?? '')."\"";
//echo " size=\"".$this->taille[$champ]."\"";
//echo " maxlength=\"".$this->max[$champ]."\"";
echo " class=\"champFormulaire\"";