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  41131c88cd38910c0f520185e0cec71452e19247 (commit)
      from  df93cd7aebf229fc34eea65883eb3998541ed6ce (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=41131c88cd38910c0f520185e0cec71452e19247

commit 41131c88cd38910c0f520185e0cec71452e19247
Author: Franck Villaume <franck.villa...@trivialdev.com>
Date:   Sun May 16 23:26:32 2021 +0200

    fix PHP syntax again...

diff --git a/src/common/tracker/actions/format_csv.php 
b/src/common/tracker/actions/format_csv.php
index 3d76da5..d82cfa2 100644
--- a/src/common/tracker/actions/format_csv.php
+++ b/src/common/tracker/actions/format_csv.php
@@ -103,19 +103,19 @@ $sep = getStringFromRequest('sep', ',');
                                        <?php echo _('Encoding')._(':'); ?>
                                </td>
                                <td>
-                                       <input type="radio" id="utf8" 
name="encoding" value="UTF-8"<?php if ($encoding == 'UTF-8') { echo ' 
checked="checked"' } ?> />
+                                       <input type="radio" id="utf8" 
name="encoding" value="UTF-8"<?php if ($encoding == 'UTF-8') { echo ' 
checked="checked"'; } ?> />
                                        <label for="utf8">
                                                <?php echo _('UTF-8'); ?><br />
                                        </label>
-                                       <input type="radio" id="utf16be" 
name="encoding" value="UTF-16BE"<?php if ($encoding == 'UTF-16BE') { echo ' 
checked="checked"' } ?> />
+                                       <input type="radio" id="utf16be" 
name="encoding" value="UTF-16BE"<?php if ($encoding == 'UTF-16BE') { echo ' 
checked="checked"'; } ?> />
                                        <label for="utf16be">
                                                <?php echo _('UTF-16BE'); ?><br 
/>
                                        </label>
-                                       <input type="radio" id="utf16le" 
name="encoding" value="UTF-16LE"<?php if ($encoding == 'UTF-16LE') { echo ' 
checked="checked"' } ?> />
+                                       <input type="radio" id="utf16le" 
name="encoding" value="UTF-16LE"<?php if ($encoding == 'UTF-16LE') { echo ' 
checked="checked"'; } ?> />
                                        <label for="utf16le">
                                                <?php echo _('UTF-16LE'); ?><br 
/>
                                        </label>
-                                       <input type="radio" id="1252" 
name="encoding" value="Windows-1252"<?php if ($encoding == 'Windows-1252') { 
echo ' checked="checked"' } ?> />
+                                       <input type="radio" id="1252" 
name="encoding" value="Windows-1252"<?php if ($encoding == 'Windows-1252') { 
echo ' checked="checked"'; } ?> />
                                        <label for="1252">
                                                <?php echo _('Windows-1252'); 
?><br />
                                        </label>
@@ -125,7 +125,7 @@ $sep = getStringFromRequest('sep', ',');
                                <td>
                                </td>
                                <td>
-                                       <input type="checkbox" id="bom" 
name="bom" value="1"<?php if ($bom) { echo ' checked="checked"' } ?> />
+                                       <input type="checkbox" id="bom" 
name="bom" value="1"<?php if ($bom) { echo ' checked="checked"'; } ?> />
                                        <label for="bom">
                                                <?php echo _('Byte order 
mark'); ?><br />
                                        </label>

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

Summary of changes:
 src/common/tracker/actions/format_csv.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 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