Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
provision
Commits
e714d222
Commit
e714d222
authored
Oct 28, 2008
by
anarcat
Committed by
anarcat
Oct 28, 2008
Browse files
fix last patch: we forgot $key
parent
33893ea4
Changes
1
Hide whitespace changes
Inline
Side-by-side
platform/provision_drupal.module
View file @
e714d222
...
...
@@ -394,7 +394,7 @@ function _provision_find_profiles() {
$languages
[
'en'
]
=
1
;
// Find languages available
$files
=
array_keys
(
file_scan_directory
(
'./profiles/'
.
$
key
,
'\.po$'
,
array
(
'.'
,
'..'
,
'CVS'
),
0
,
FALSE
,
'filepath'
));
$files
=
array_keys
(
file_scan_directory
(
'./profiles/'
.
$
name
,
'\.po$'
,
array
(
'.'
,
'..'
,
'CVS'
),
0
,
FALSE
,
'filepath'
));
foreach
(
$files
as
$file
)
{
if
(
preg_match
(
'!(/|\.)([^\./]+)\.po$!'
,
$file
,
$langcode
))
{
$languages
[
$langcode
[
2
]]
=
1
;
// use the language name as an index to weed out duplicates
...
...
@@ -402,7 +402,7 @@ function _provision_find_profiles() {
}
$profile
->
info
[
'languages'
]
=
array_keys
(
$languages
);
$return
[
$
key
]
=
$profile
;
$return
[
$
name
]
=
$profile
;
provision_log
(
'notice'
,
t
(
'found install profile %name'
,
array
(
'%name'
=>
$name
)));
}
return
$return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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