From 41fb7beb2a7e71cb7e47bbd1ee3cf29be25d012e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 17 Aug 2011 22:13:26 +0000 Subject: [PATCH] Make area on home page using div instead of tables --- htdocs/index.php | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/htdocs/index.php b/htdocs/index.php index f32afc72c89..92e972e9c4b 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -20,7 +20,7 @@ /** * \file htdocs/index.php * \brief Dolibarr home page - * \version $Id: index.php,v 1.202 2011/08/15 17:43:43 eldy Exp $ + * \version $Id: index.php,v 1.203 2011/08/17 22:13:26 eldy Exp $ */ define('NOCSRFCHECK',1); // This is login page. We must be able to go on it from another web site. @@ -90,8 +90,7 @@ if (! empty($conf->global->MAIN_MOTD)) } -if (! empty($conf->global->MAIN_TRY_DIV)) print '
'; -else print '
'; +print '
'; /* @@ -255,8 +254,7 @@ if ($user->societe_id == 0) } -if (! empty($conf->global->MAIN_TRY_DIV)) print '
'; -else print '
'; +print '
'; /* @@ -516,8 +514,7 @@ foreach($dashboardlines as $key => $board) print '
'; // End table array -if (! empty($conf->global->MAIN_TRY_DIV)) print '

'; -else print ''; // End table left area +print '

'; @@ -528,7 +525,7 @@ else print ''; // End table left area printBoxesArea($user,"0"); -if (! empty($conf->global->MAIN_TRY_DIV)) print '
'; +print ''; /* * Show security warnings @@ -568,7 +565,7 @@ if ($user->admin && empty($conf->global->MAIN_REMOVE_INSTALL_WARNING)) $db->close(); -llxFooter('$Date: 2011/08/15 17:43:43 $ - $Revision: 1.202 $'); +llxFooter('$Date: 2011/08/17 22:13:26 $ - $Revision: 1.203 $'); /**