Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
7d1c1fcc
Commit
7d1c1fcc
authored
Oct 20, 2002
by
Kjartan
Browse files
. fixing what I did earlier. Not sure how that happend.
parent
0b323c0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/common.inc
View file @
7d1c1fcc
...
...
@@ -765,19 +765,18 @@ function page_footer() {
}
}
// Load configuration variables, overriding values set in conf.php
$conf
=
variable_init
(
isset
(
$conf
)
?
$conf
:
array
());
unset
(
$conf
);
$config
=
conf_init
();
include_once
"includes/
$config
.php"
;
include_once
"includes/database.inc"
;
include_once
"includes/xmlrpc.inc"
;
include_once
"includes/module.inc"
;
include_once
"includes/theme.inc"
;
// initialize configuration variables:
$conf
=
variable_init
(
$conf
);
// initialize configuration variables
, using values from conf.php if available
:
$conf
=
variable_init
(
isset
(
$conf
)
?
$conf
:
array
()
);
// initialize installed modules:
module_init
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment