[Fusionforge-commits] r17768 - trunk/src/www/pm

Marc-Etienne VARGENAU vargenau at fusionforge.org
Wed Aug 21 18:12:44 CEST 2013


Author: vargenau
Date: 2013-08-21 18:12:44 +0200 (Wed, 21 Aug 2013)
New Revision: 17768

Modified:
   trunk/src/www/pm/ganttpage.php
Log:
Do not use void function result

Modified: trunk/src/www/pm/ganttpage.php
===================================================================
--- trunk/src/www/pm/ganttpage.php	2013-08-21 16:11:40 UTC (rev 17767)
+++ trunk/src/www/pm/ganttpage.php	2013-08-21 16:12:44 UTC (rev 17768)
@@ -29,7 +29,7 @@
 require_once $gfwww.'include/unicode.php';
 require_once $gfwww.'include/html.php';
 
-echo $HTML->Theme();
+$HTML->Theme();
 html_use_jqueryteamworkgantt();
 html_generic_fileheader(_('Gantt Chart'));
 echo $HTML->getJavascripts();
@@ -336,5 +336,5 @@
   <div class="__template__" type="ASSIGNMENT_ROW"><!--
   --></div>
 <?php
-echo $HTML->footer(false);
+$HTML->footer(false);
 ?>
\ No newline at end of file




More information about the Fusionforge-commits mailing list