www/config.php.dist

Tue, 11 Dec 2018 15:01:37 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 11 Dec 2018 15:01:37 +0100
changeset 138
59874681fc13
parent 2
282e7d2bb28a
child 185
4c25db9e8102
permissions
-rw-r--r--

Hop flavour and aroma sets global values. On the hop tab, show IBU and make room for the flavour and aroma presentation.

<?php

/*
 * Check for development server
 */
if ( strcmp($_SERVER['SERVER_NAME'], "seaport.mbse.ym") == 0)  {

	define ('DBASE_NAME', 'bms_dev');
	define ('DBASE_HOST', 'lx02');
	define ('DBASE_USER', 'bms_dev');
	define ('DBASE_PASS', 'bms_dev');
	define ('DBASE_CHARSET', 'utf8');

	define ('EMAIL_FROM', 'noreply@mbse.ym');

	setlocale ( LC_TIME , 'nl_NL' );

} else {

        define ('DBASE_NAME', 'bms_dev');
	define ('DBASE_HOST', 'lx02');
	define ('DBASE_USER', 'bms_dev');
	define ('DBASE_PASS', 'bms_dev');
	define ('DBASE_CHARSET', 'utf8');

	define ('EMAIL_FROM', 'noreply@mbse.ym');

	setlocale ( LC_TIME , 'nl_NL' );

}

mercurial