[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
- Previous message: [Scummvm-cvs-logs] CVS: engine-data kyra.dat,NONE,1.1 queen.tbl,NONE,1.1 sky.cpt,NONE,1.1
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword2/driver _mouse.cpp,1.44,1.45 animation.cpp,1.67,1.68 d_sound.cpp,1.160,1.161 palette.cpp,1.41,1.42 render.cpp,1.79,1.80
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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">';
- Previous message: [Scummvm-cvs-logs] CVS: engine-data kyra.dat,NONE,1.1 queen.tbl,NONE,1.1 sky.cpt,NONE,1.1
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword2/driver _mouse.cpp,1.44,1.45 animation.cpp,1.67,1.68 d_sound.cpp,1.160,1.161 palette.cpp,1.41,1.42 render.cpp,1.79,1.80
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list