Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
email
Commits
b71dec9f
Commit
b71dec9f
authored
Sep 01, 2012
by
Matthias Hutterer
Browse files
Issue #1515362 by jpklein, mikeryan: Fixed type hinting in MigrateEmailFieldHandler.
parent
0db03487
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
email.migrate.inc
email.migrate.inc
+1
-1
No files found.
email.migrate.inc
View file @
b71dec9f
...
...
@@ -10,7 +10,7 @@ class MigrateEmailFieldHandler extends MigrateFieldHandler {
$this
->
registerTypes
(
array
(
'email'
));
}
public
function
prepare
(
stdClass
$entity
,
array
$field_info
,
array
$instance
,
array
$values
)
{
public
function
prepare
(
$entity
,
array
$field_info
,
array
$instance
,
array
$values
)
{
{
// Setup the Field API array for saving.
$arguments
=
(
isset
(
$values
[
'arguments'
]))
?
$values
[
'arguments'
]
:
array
();
$language
=
$this
->
getFieldLanguage
(
$entity
,
$field_info
,
$arguments
);
...
...
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