disabled developermode and debugging by default

This commit is contained in:
Steffen Vogel 2010-10-08 11:17:58 +02:00
parent 863b86252c
commit 0e352b6945
2 changed files with 7 additions and 4 deletions

View file

@ -64,9 +64,9 @@ $config['db']['dbname'] = 'volkszaehler';
//$config['db']['path'] = 'volkszaehler'; //$config['db']['path'] = 'volkszaehler';
/** @var boolean disables some optimizations. Only use it when you exactly know what you are doing. */ /** @var boolean disables some optimizations. Only use it when you exactly know what you are doing. */
$config['devmode'] = TRUE; $config['devmode'] = FALSE;
/** @var integer set to > 0 to show debugging messages */ /** @var integer set to > 0 to show debugging messages */
$config['debug'] = 5; $config['debug'] = 0;
?> ?>

View file

@ -34,7 +34,6 @@ tbody tr td {
} }
#plot { #plot {
width: 800px;
height: 400px; height: 400px;
} }
@ -121,3 +120,7 @@ tbody tr td {
.ops { .ops {
text-align: right; text-align: right;
} }
.loading {
/* TODO center */
}