[Fusionforge-commits] FusionForge branch master updated. 6.0.4-611-gb09b154

Marc-Etienne VARGENAU vargenau at libremir.placard.fr.eu.org
Mon Jun 27 16:01:01 CEST 2016


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  b09b154886515e4a37201e6a447e499cbac61fcc (commit)
       via  bf4417effd9936e65e922ec0b24e84b3f1e92dd6 (commit)
      from  a2c1a2c3fea3659f959d79a58c8861a37ec9da02 (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=b09b154886515e4a37201e6a447e499cbac61fcc

commit b09b154886515e4a37201e6a447e499cbac61fcc
Author: Marc-Etienne Vargenau <Marc-Etienne.Vargenau at alcatel-lucent.com>
Date:   Mon Jun 27 16:00:54 2016 +0200

    function listTableBottom has no parameter

diff --git a/src/common/widget/Widget_HomeDetailActivityMostActiveProjectWeek.class.php b/src/common/widget/Widget_HomeDetailActivityMostActiveProjectWeek.class.php
index ef59f54..01565d2 100644
--- a/src/common/widget/Widget_HomeDetailActivityMostActiveProjectWeek.class.php
+++ b/src/common/widget/Widget_HomeDetailActivityMostActiveProjectWeek.class.php
@@ -178,7 +178,7 @@ class Widget_HomeDetailActivityMostActiveProjectWeek extends Widget {
 				echo $HTML->multiTableRow(array('class' => $HTML->boxGetAltRowStyle($j++, true)), $cells);
 			}
 			if ($displayTableTop) {
-				echo $HTML->listTableBottom($theader);
+				echo $HTML->listTableBottom();
 			}
 		} else {
 			echo $HTML->information(_('No activity during the last week'));
diff --git a/src/www/activity/index.php b/src/www/activity/index.php
index f0f4656..2a37089 100644
--- a/src/www/activity/index.php
+++ b/src/www/activity/index.php
@@ -399,7 +399,7 @@ echo $HTML->closeForm();
 			echo $HTML->multiTableRow(array('class' => $HTML->boxGetAltRowStyle($j++, true)), $cells);
 		}
 		if ($displayTableTop) {
-			echo $HTML->listTableBottom($theader);
+			echo $HTML->listTableBottom();
 		}
 		if (!$displayTableTop) {
 			echo $HTML->information(_('No Activity Found'));

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

commit bf4417effd9936e65e922ec0b24e84b3f1e92dd6
Author: Marc-Etienne Vargenau <Marc-Etienne.Vargenau at alcatel-lucent.com>
Date:   Mon Jun 27 15:56:48 2016 +0200

    Add $id parameter to functions boxTop and boxMiddle in base class like in Funky theme

diff --git a/src/www/include/Layout.class.php b/src/www/include/Layout.class.php
index e38eae8..9ef08a4 100644
--- a/src/www/include/Layout.class.php
+++ b/src/www/include/Layout.class.php
@@ -567,9 +567,10 @@ if (isset($params['group']) && $params['group']) {
 	 * boxTop() - Top HTML box.
 	 *
 	 * @param	string	$title	Box title
+	 * @param   string  $id
 	 * @return	string	the html code
 	 */
-	function boxTop($title) {
+	function boxTop($title, $id = '') {
 		return '
 			<!-- Box Top Start -->
 
@@ -592,9 +593,10 @@ if (isset($params['group']) && $params['group']) {
 	 * boxMiddle() - Middle HTML box.
 	 *
 	 * @param	string	$title	Box title
+	 * @param   string  $id
 	 * @return	string	The html code
 	 */
-	function boxMiddle($title) {
+	function boxMiddle($title, $id = '') {
 		return '
 			<!-- Box Middle Start -->
 			</td>

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

Summary of changes:
 .../widget/Widget_HomeDetailActivityMostActiveProjectWeek.class.php | 2 +-
 src/www/activity/index.php                                          | 2 +-
 src/www/include/Layout.class.php                                    | 6 ++++--
 3 files changed, 6 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list