This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  43fb6d0de28077f35f0102a945aba505ba0a868b (commit)
      from  e27b2c6bd63473041c5f54f2e1c1039065a0b678 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=43fb6d0de28077f35f0102a945aba505ba0a868b

commit 43fb6d0de28077f35f0102a945aba505ba0a868b
Author: Franck Villaume <franck.villa...@trivialdev.com>
Date:   Sun May 16 23:15:01 2021 +0200

    fix PHP syntax

diff --git a/src/common/tracker/actions/format_csv.php 
b/src/common/tracker/actions/format_csv.php
index 2d478a2..3d76da5 100644
--- a/src/common/tracker/actions/format_csv.php
+++ b/src/common/tracker/actions/format_csv.php
@@ -73,11 +73,11 @@ $sep = getStringFromRequest('sep', ',');
                                        <?php echo _('Separator')._(':'); ?>
                                </td>
                                <td>
-                                       <input type="radio" id="comma" 
name="sep" value=","<?php if ($sep==',') { echo ' checked="checked"' } ?> />
+                                       <input type="radio" id="comma" 
name="sep" value=","<?php if ($sep==',') { echo ' checked="checked"'; } ?> />
                                        <label for="comma">
                                                <?php echo _('Comma (char: 
“,”)'); ?><br />
                                        </label>
-                                       <input type="radio" id="semi-colon" 
name="sep" value=";"<?php if ($sep==';') { echo ' checked="checked"' } ?> />
+                                       <input type="radio" id="semi-colon" 
name="sep" value=";"<?php if ($sep==';') { echo ' checked="checked"'; } ?> />
                                        <label for="semi-colon">
                                                <?php echo _('Semi-colon (char: 
“;”)'); ?>
                                        </label>
@@ -88,11 +88,11 @@ $sep = getStringFromRequest('sep', ',');
                                        <?php echo _('Header')._(':'); ?>
                                </td>
                                <td>
-                                       <input type="radio" id="included" 
name="headers" value="1"<?php if ($headers) { echo ' checked="checked"' } ?> />
+                                       <input type="radio" id="included" 
name="headers" value="1"<?php if ($headers) { echo ' checked="checked"'; } ?> />
                                        <label for="included">
                                                <?php echo _('Included'); ?><br 
/>
                                        </label>
-                                       <input type="radio" id="none" 
name="headers" value="0"<?php if (!$headers) echo {' checked="checked"' } ?> />
+                                       <input type="radio" id="none" 
name="headers" value="0"<?php if (!$headers) { echo ' checked="checked"'; } ?> 
/>
                                        <label for="none">
                                                <?php echo _('None'); ?>
                                        </label>

-----------------------------------------------------------------------

Summary of changes:
 src/common/tracker/actions/format_csv.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
Fusionforge-commits@lists.fusionforge.org
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to