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  e5cf506d83d1106fbdb3a67278bb0dc83004a225 (commit)
       via  2a109911c2881b331f95ff73e8c98544a774db1d (commit)
      from  52b96bfe5d3a89ae3c9cfa9ea0808c3bba7c8921 (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=e5cf506d83d1106fbdb3a67278bb0dc83004a225

commit e5cf506d83d1106fbdb3a67278bb0dc83004a225
Author: Franck Villaume <[email protected]>
Date:   Sun Sep 4 18:40:02 2016 +0200

    fix HTML syntax

diff --git a/src/common/tracker/actions/mod-limited.php 
b/src/common/tracker/actions/mod-limited.php
index fc81746..00e1aa1 100644
--- a/src/common/tracker/actions/mod-limited.php
+++ b/src/common/tracker/actions/mod-limited.php
@@ -56,10 +56,10 @@ echo $HTML->openForm(array('id' => 'trackermodlimitedform', 
'action' => '/tracke
 <input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
 <input type="hidden" name="artifact_id" value="<?php echo $ah->getID(); ?>" />
 
-<table width="80%">
 <?php
 if (session_loggedin()) {
 ?>
+<table width="80%">
                <tr>
                        <td><?php
                                if ($ah->isMonitoring()) {
diff --git a/src/common/tracker/actions/mod.php 
b/src/common/tracker/actions/mod.php
index 81dbfa5..3b25b96 100644
--- a/src/common/tracker/actions/mod.php
+++ b/src/common/tracker/actions/mod.php
@@ -59,10 +59,10 @@ echo $HTML->openForm(array('id' => 'trackermodform', 
'action' => '/tracker/?grou
 <input type="hidden" name="func" value="postmod" />
 <input type="hidden" name="artifact_id" value="<?php echo $ah->getID(); ?>" />
 
-<table width="80%">
 <?php
 if (session_loggedin()) {
 ?>
+<table width="80%">
                <tr>
                        <td><?php
                                if ($ah->isMonitoring()) {

https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=2a109911c2881b331f95ff73e8c98544a774db1d

commit 2a109911c2881b331f95ff73e8c98544a774db1d
Author: Franck Villaume <[email protected]>
Date:   Sun Sep 4 18:39:37 2016 +0200

    use HTML helpers

diff --git a/src/common/include/utils.php b/src/common/include/utils.php
index 4c6a742..814cf5e 100644
--- a/src/common/include/utils.php
+++ b/src/common/include/utils.php
@@ -558,7 +558,7 @@ function ShowResultSet($result, $title = '', $linkify = 
false, $displayHeaders =
                $rows = db_numrows($result);
                $cols = db_numfields($result);
 
-               echo '<table class="fullwidth">'."\n";
+               echo $HTML->listTableTop();
 
                /*  Create  the  headers  */
                $headersCellData = array();
@@ -621,7 +621,7 @@ function ShowResultSet($result, $title = '', $linkify = 
false, $displayHeaders =
                        }
                        echo '</tr>';
                }
-               echo '</table>';
+               echo $HTML->listTableBottom();
        } else {
                echo db_error();
        }

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

Summary of changes:
 src/common/include/utils.php               | 4 ++--
 src/common/tracker/actions/mod-limited.php | 2 +-
 src/common/tracker/actions/mod.php         | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to