// Replacement strings
$GLOBALS['replacer'] = array(
- 'userid' => '%userid%', // User-ID
+ 'userid' => '%userid%', // User-ID
'surname' => '%vorname%', // Surname
'family' => '%nachname%', // Family name
'gender' => '%anrede%', // Gender
// Filter for loading more runtime includes (not for installation)
function FILTER_LOAD_RUNTIME_INCLUDES () {
// Load more includes
- foreach (array('inc/session.php','inc/versions.php') as $inc) {
+ foreach (array('inc/databases.php','inc/session.php','inc/versions.php') as $inc) {
// Load the include
loadIncludeOnce($inc);
} // END - foreach
// Run the init filter chain
runFilterChain('init');
- // Load "databases" aka static arrays
- loadIncludeOnce('inc/databases.php');
-
// Check module for permissions
$checkModule = checkModulePermissions();