Update of /cvsroot/phpmp/phpMP/templates/TealMP
In directory usw-pr-cvs1:/tmp/cvs-serv6721/templates/TealMP
Modified Files:
overall_header.tpl
Log Message:
Re-added page title support. One extra line in all directly-accessible files...no biggie.
Fixed my idiotic mistake in online_users_side.php regarding the fetching of non-expired sessions. Should now work correctly (but not quite perfectly).
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpmp/phpMP/templates/TealMP/overall_header.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** overall_header.tpl 12 Aug 2002 01:08:29 -0000 1.4
--- overall_header.tpl 14 Aug 2002 06:24:24 -0000 1.5
***************
*** 1 ****
! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>.:: {$site_name} ::.</title>
<script src="{$mpuri}templates/{$tpl_name}/js/fade.js" language="Javascript"></script>
<link rel="stylesheet" href="{$mpuri}templates/{$tpl_name}/css/tpl_style.css" type="text/css" />
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table class="header" width="100%" bgcolor="#0f9fbc" cellpadding="0" cellspacing="0">
<tr>
<td width="300" align="left"><img src="{$mpuri}templates/{$tpl_name}/images/logo.jpg" /></td>
<td width="100%" align="center" background="{$mpuri}templates/{$tpl_name}/images/topbg.jpg"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" />
</td>
<td width="25" align="right" background="{$mpuri}templates/{$tpl_name}/images/grad_ld_lr.gif"><img src="{$mpuri}templates/{$tpl_name}/images/grad_ld_lr.gif" />
</td>
</tr>
<tr>
<td width="100%" bgcolor=black colspan="5"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" /></td>
</tr>
<tr>
<td width="100%" colspan="5" align="center" bgcolor="#C0C0C0"><font size="2">
{$l_nav_bar}
</font>
</td>
</tr>
<tr>
<td width="100%" bgcolor=black colspan="5"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" /></td>
</tr>
</table>
\ No newline at end of file
--- 1 ----
! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>.:: {$site_name} :: {$page_title} ::.</title>
<script src="{$mpuri}templates/{$tpl_name}/js/fade.js" language="Javascript"></script>
<link rel="stylesheet" href="{$mpuri}templates/{$tpl_name}/css/tpl_style.css" type="text/css" />
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table class="header" width="100%" bgcolor="#0f9fbc" cellpadding="0" cellspacing="0">
<tr>
<td width="300" align="left"><img src="{$mpuri}templates/{$tpl_name}/images/logo.jpg" /></td>
<td width="100%" align="center" background="{$mpuri}templates/{$tpl_name}/images/topbg.jpg"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" />
</td>
<td width="25" align="right" background="{$mpuri}templates/{$tpl_name}/images/grad_ld_lr.gif"><img src="{$mpuri}templates/{$tpl_name}/images/grad_ld_lr.gif" />
</td>
</tr>
<tr>
<td width="100%" bgcolor=black colspan="5"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" /></td>
</tr>
<tr>
<td width="100%" colspan="5" align="center" bgcolor="#C0C0C0"><font size="2">
{$l_nav_bar}
</font>
</td>
</tr>
<tr>
<td width="100%" bgcolor=black colspan="5"><img src="{$mpuri}templates/{$tpl_name}/images/pixel.gif" /></td>
</tr>
</table>
\ No newline at end of file
|