mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 08:09:02 +01:00
Made the layout stretch all the way across the screen
This commit is contained in:
parent
57c5024274
commit
c052b0fbaf
@ -1,24 +1,28 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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 *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* 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 *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* 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"]."\"";
|
||||
if (!$phpgw_info["server"]["htmlcompliant"]) {
|
||||
$bodyheader .= "topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" leftmargin=\"0\"";
|
||||
}
|
||||
$bodyheader = ' bgcolor="' . $phpgw_info['theme']['bg_color'] . '" alink="'
|
||||
. $phpgw_info['theme']['alink'] . '" link="' . $phpgw_info['theme']['link'] . '" vlink="'
|
||||
. $phpgw_info['theme']['vlink'] . '"';
|
||||
|
||||
$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);
|
||||
echo $tpl->finish($tpl->parse("out","head"));
|
||||
if (! $phpgw_info['server']['htmlcompliant'])
|
||||
{
|
||||
$bodyheader .= ' topmargin="0" bottommargin="0" marginheight="0" marginwidth="0" leftmargin="0" rightmargin="0"';
|
||||
}
|
||||
|
||||
$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');
|
||||
|
@ -52,15 +52,9 @@
|
||||
</tr>
|
||||
<?php $selected = array(); */?>
|
||||
|
||||
<?php $selected[$current_config["htmlcompliant"]] = " selected"; ?>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>Use pure HTML compliant code (not fully working yet):</td>
|
||||
<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>
|
||||
<td><input type="checkbox" name="newsettings[htmlcompliant]" value="True"<?php echo ($current_config["htmlcompliant"]?" checked":""); ?>></td>
|
||||
</tr>
|
||||
<?php $selected = array(); ?>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user