]> SAFE projects GIT repository - jmp/mailleur/commitdiff
Fixing the bodu and foot definition
authorJean-Marc Pigeon (Delson) <jmp@safe.ca>
Tue, 26 Aug 2025 12:32:15 +0000 (08:32 -0400)
committerJean-Marc Pigeon (Delson) <jmp@safe.ca>
Tue, 26 Aug 2025 12:32:15 +0000 (08:32 -0400)
www/mailleur.php
www/scrfun.php

index 85acfabc08e3f03710ecdd83ea8809aea34ed3fd..dfb1b8d3ef58acd0cb9fcd0c0e98fc119bff95fc 100644 (file)
@@ -10,7 +10,7 @@ include "scrfun.php";
 
 $footer=footer("P:mailleur");
 
-$STR  = <<<EOD
+$STR  = <<<EOT
 <HTML>    
 <HEAD>
 <TITLE>Mailleur</TITLE>
@@ -23,9 +23,9 @@ Mailleur
 $footer;
 </BODY>
 </HTML>
-EOD;
+EOT;
 
-echo $STR
+return $STR
 }
 
 //display main screen
index d14eccfa2b3aa91992756b1c7a82fcb885ef5d19..28b086e14a0bb397f869aca7d87404e105c1ccf4 100644 (file)
@@ -19,7 +19,7 @@ include       "release.php";
 
 $today=date("D M d H:i:s Y");
 
-$STR  = <<<EOD
+$STR  = <<<EOT
 <TR>
 <TD height="13"><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0>
 <TR>
@@ -47,9 +47,9 @@ $today
 </TABLE></TD>
 </TR>
 
-EOD;
+EOT;
 
-echo $STR;
+return $STR;
 }