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
provision
Commits
7ba5da8f
Commit
7ba5da8f
authored
Oct 28, 2008
by
anarcat
Committed by
anarcat
Oct 28, 2008
Browse files
forward port last $key fix
parent
d0a37e40
Changes
1
Hide whitespace changes
Inline
Side-by-side
platform/provision_drupal.module
View file @
7ba5da8f
...
...
@@ -500,14 +500,14 @@ function _provision_find_profiles() {
$languages
[
'en'
]
=
1
;
// Find languages available
$files
=
array_keys
(
file_scan_directory
(
'./profiles/'
.
$
key
.
'/translations'
,
'\.po$'
,
array
(
'.'
,
'..'
,
'CVS'
),
0
,
FALSE
,
'filepath'
));
$files
=
array_keys
(
file_scan_directory
(
'./profiles/'
.
$
name
.
'/translations'
,
'\.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
}
}
$profile
->
info
[
'languages'
]
=
array_keys
(
$languages
);
$return
[
$
key
]
=
$profile
;
$return
[
$
name
]
=
$profile
;
provision_log
(
'notice'
,
t
(
'found install profile %name'
,
array
(
'%name'
=>
$name
)));
}
...
...
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