[Scummvm-cvs-logs] CVS: web/include html.php,1.17,1.18

Eugene Sandulenko sev at users.sourceforge.net
Sat Oct 29 13:13:42 CEST 2005


Update of /cvsroot/scummvm/web/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8206

Modified Files:
	html.php 
Log Message:
Fix couple waarnings.


Index: html.php
===================================================================
RCS file: /cvsroot/scummvm/web/include/html.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- html.php	27 Jan 2004 21:52:56 -0000	1.17
+++ html.php	29 Oct 2005 20:11:06 -0000	1.18
@@ -104,7 +104,7 @@
 function html_frame_end ($text = "")
 {
 	global $file_root;
-	$str .= "</table>\n";
+	$str = "</table>\n";
 	if ($text) {
 		$str .= '<div class="frameBottom"><span class="frameTitle">'.$text.'</span></div>'."\n";
 	}
@@ -116,7 +116,7 @@
 {
 	global $file_root;
 
-	$str .= "<div class='frame'>\n";
+	$str = "<div class='frame'>\n";
 	
 	if ($title) {
 		$str .= '<div class="frameTop"><div class="cornerLeft"><div class="cornerRight">';
@@ -133,7 +133,7 @@
 function html_round_frame_end ($text = " ")
 {
 	global $file_root;
-	$str .= "</div>\n";
+	$str = "</div>\n";
 //	$str .= '</td></tr></table>'."\n";
 	if ($text) {
 		$str .= '<div class="frameBottom"><div class="cornerLeft"><div class="cornerRight">';





More information about the Scummvm-git-logs mailing list