updated so that the footer finally works properly

This commit is contained in:
seek3r 2002-05-26 07:05:36 +00:00
parent f54cf5cb0e
commit 6998f911ff
4 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,12 @@
<!-- BEGIN B_powered_bottom --> <!-- BEGIN B_powered_bottom -->
<table border="0" cellspacing="0" cellpadding="0" width="100%"> <table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr> <tr>
<td align="center" bgcolor="{power_backcolor}"> <td align="center" background="{em_bottom_img}">
<font color="{power_textcolor}">{powered}</font> <font color="{power_textcolor}">{powered}</font>
</td> </td>
</tr> </tr>
</table> </table>
<!-- END B_powered_bottom --> <!-- END B_powered_bottom -->
<p>&nbsp;</p>
</BODY> </BODY>
<!-- END footer --> <!-- END footer -->
</HTML> </HTML>

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

Binary file not shown.

View File

@ -228,7 +228,8 @@
'power_textcolor' => $GLOBALS['phpgw_info']['theme']['navbar_text'] 'power_textcolor' => $GLOBALS['phpgw_info']['theme']['navbar_text']
// 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] // 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
); );
$var['em_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','em'); $var['top_spacer_middle_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','top_spacer_middle');
$var['em_bottom_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','em_bottom');
$tpl->set_var($var); $tpl->set_var($var);
$tpl->parse('V_powered_bottom','B_powered_bottom'); $tpl->parse('V_powered_bottom','B_powered_bottom');
} }