Fix: database was not closed

This commit is contained in:
Laurent Destailleur 2011-08-17 13:08:19 +00:00
parent f7683c1add
commit da8545430b
6 changed files with 38 additions and 10 deletions

View File

@ -20,7 +20,7 @@
/**
* \file htdocs/theme/auguria/style.css.php
* \brief Fichier de style CSS du theme auguria
* \version $Id: style.css.php,v 1.100 2011/08/16 17:59:46 eldy Exp $
* \version $Id: style.css.php,v 1.101 2011/08/17 13:08:19 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -2061,3 +2061,7 @@ div.tdlineupdown {
cursor: move;
white-space: nowrap;
}
<?php
if (is_object($db)) $db->close();
?>

View File

@ -22,7 +22,7 @@
/**
* \file htdocs/theme/bureau2crea/style.css.php
* \brief Fichier de style CSS du theme bureau2crea
* \version $Id: style.css.php,v 1.48 2011/08/17 13:01:43 bureau2crea Exp $
* \version $Id: style.css.php,v 1.49 2011/08/17 13:08:19 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -1052,7 +1052,7 @@ div.tabs a.tab#active {
color: #D45416;
border-bottom: 0px;
background-image: none;
}
div.tabs a.tab span {
@ -1328,7 +1328,7 @@ table.noborder {
-webkit-box-shadow: 2px 4px 2px #CCCCCC; */
border-collapse: collapse;
/*border: 1px solid #666;*/
}
table.noborder tr {
@ -2162,10 +2162,18 @@ a.cke_dialog_ui_button
height: 72px !important;
}
/* ============================================================================== */
/* Login */
/* ============================================================================== */
#login table {
border: 1px solid #666666 !important;
}
}
<?php
if (is_object($db)) $db->close();
?>

View File

@ -22,7 +22,7 @@
/**
* \file htdocs/theme/eldy/style.css.php
* \brief Fichier de style CSS du theme Cameleo
* \version $Id: style.css.php,v 1.11 2011/08/15 17:43:42 eldy Exp $
* \version $Id: style.css.php,v 1.12 2011/08/17 13:08:19 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -2153,4 +2153,8 @@ a.cke_dialog_ui_button
.template-upload {
height: 72px !important;
}
}
<?php
if (is_object($db)) $db->close();
?>

View File

@ -21,7 +21,7 @@
/**
* \file htdocs/theme/eldy/style.css.php
* \brief Fichier de style CSS du theme Eldy
* \version $Id: style.css.php,v 1.107 2011/08/16 17:59:46 eldy Exp $
* \version $Id: style.css.php,v 1.108 2011/08/17 13:08:20 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -2032,3 +2032,7 @@ a.cke_dialog_ui_button
.template-upload {
height: 72px !important;
}
<?php
if (is_object($db)) $db->close();
?>

View File

@ -19,7 +19,7 @@
/**
* \file htdocs/theme/freelug/style.css.php
* \brief Fichier de style CSS du theme Freelug
* \version $Id: style.css.php,v 1.47 2011/08/15 18:37:08 eldy Exp $
* \version $Id: style.css.php,v 1.48 2011/08/17 13:08:19 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -1605,3 +1605,7 @@ a.cke_dialog_ui_button
.template-upload {
height: 72px !important;
}
<?php
if (is_object($db)) $db->close();
?>

View File

@ -19,7 +19,7 @@
/**
* \file htdocs/theme/yellow/style.css.php
* \brief Fichier de style CSS du theme Yellow
* \version $Id: style.css.php,v 1.48 2011/08/15 17:43:42 eldy Exp $
* \version $Id: style.css.php,v 1.49 2011/08/17 13:08:19 eldy Exp $
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
@ -1651,3 +1651,7 @@ a.cke_dialog_ui_button
.template-upload {
height: 72px !important;
}
<?php
if (is_object($db)) $db->close();
?>