Changeset 64072 in spip-zone for _plugins_/forms
- Timestamp:
- Jul 26, 2012, 11:07:50 PM (9 years ago)
- Location:
- _plugins_/forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/forms/forms_et_tables_1_9_1/inc/forms_export.php
r13697 r64072 47 47 // Prendre les differents champs dans l'ordre 48 48 foreach ($structure as $champ => $t) { 49 if (!isset($valeurs[$champ]) ) {49 if (!isset($valeurs[$champ]) AND $t['type']!='multiple') { 50 50 $ligne[$champ] = ""; 51 51 } -
_plugins_/forms/forms_et_tables_2_0/inc/forms_export.php
r50068 r64072 61 61 foreach ($structure as $champ => $t) { 62 62 63 if ( !isset($valeurs[$champ]) ) {63 if ( !isset($valeurs[$champ]) AND $t['type']!='multiple') { 64 64 $ligne[$champ] = ""; 65 65 -
_plugins_/forms/forms_et_tables_3_0/core/inc/forms_export.php
r25533 r64072 46 46 // Prendre les differents champs dans l'ordre 47 47 foreach ($structure as $champ => $t) { 48 if (!isset($valeurs[$champ]) ) {48 if (!isset($valeurs[$champ]) AND $t['type']!='multiple') { 49 49 $ligne[$champ] = ""; 50 50 }
Note: See TracChangeset
for help on using the changeset viewer.