Made the layout stretch all the way across the screen

This commit is contained in:
jengo 2001-03-08 23:00:20 +00:00
parent 57c5024274
commit c052b0fbaf
2 changed files with 25 additions and 27 deletions

View File

@ -1,24 +1,28 @@
<?php <?php
/**************************************************************************\ /**************************************************************************\
* phpGroupWare * * phpGroupWare *
* http://www.phpgroupware.org * * http://www.phpgroupware.org *
* -------------------------------------------- * * -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it * * This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the * * under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your * * Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. * * option) any later version. *
\**************************************************************************/ \**************************************************************************/
/* $Id$ */ /* $Id$ */
$bodyheader = "BGCOLOR=\"".$phpgw_info["theme"]["bg_color"]."\" ALINK=\"".$phpgw_info["theme"]["alink"]."\" LINK=\"".$phpgw_info["theme"]["link"]."\" VLINK=\"".$phpgw_info["theme"]["vlink"]."\""; $bodyheader = ' bgcolor="' . $phpgw_info['theme']['bg_color'] . '" alink="'
if (!$phpgw_info["server"]["htmlcompliant"]) { . $phpgw_info['theme']['alink'] . '" link="' . $phpgw_info['theme']['link'] . '" vlink="'
$bodyheader .= "topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" leftmargin=\"0\""; . $phpgw_info['theme']['vlink'] . '"';
}
$tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR); if (! $phpgw_info['server']['htmlcompliant'])
$tpl->set_unknowns("remove"); {
$tpl->set_file(array("head" => "head.tpl")); $bodyheader .= ' topmargin="0" bottommargin="0" marginheight="0" marginwidth="0" leftmargin="0" rightmargin="0"';
$tpl->set_var("website_title", $phpgw_info["server"]["site_title"]); }
$tpl->set_var("body_tags",$bodyheader);
echo $tpl->finish($tpl->parse("out","head")); $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
$tpl->set_unknowns('remove');
$tpl->set_file(array('head' => 'head.tpl'));
$tpl->set_var('website_title', $phpgw_info['server']['site_title']);
$tpl->set_var('body_tags',$bodyheader);
$tpl->pfp('out','head');

View File

@ -52,15 +52,9 @@
</tr> </tr>
<?php $selected = array(); */?> <?php $selected = array(); */?>
<?php $selected[$current_config["htmlcompliant"]] = " selected"; ?>
<tr bgcolor="e6e6e6"> <tr bgcolor="e6e6e6">
<td>Use pure HTML compliant code (not fully working yet):</td> <td>Use pure HTML compliant code (not fully working yet):</td>
<td> <td><input type="checkbox" name="newsettings[htmlcompliant]" value="True"<?php echo ($current_config["htmlcompliant"]?" checked":""); ?>></td>
<select name="newsettings[htmlcompliant]">
<option value="True"<?php echo $selected["True"]; ?>>True</option>
<option value="False"<?php echo $selected["False"]; ?>>False</option>
</select>
</td>
</tr> </tr>
<?php $selected = array(); ?> <?php $selected = array(); ?>