Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
references
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
references
Merge requests
!3
Removing optional parameter
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Removing optional parameter
issue/references-3254704:3254704-php-8.0-compatibility
into
7.x-2.x
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Paulo Henrique Cota Starling
requested to merge
issue/references-3254704:3254704-php-8.0-compatibility
into
7.x-2.x
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Closes
#3254704
0
0
Merge request reports
Compare
7.x-2.x
version 1
ac863905
3 years ago
7.x-2.x (base)
and
latest version
latest version
ac863905
1 commit,
3 years ago
version 1
ac863905
1 commit,
3 years ago
2 files
+
8
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
node_reference/node_reference.module
+
4
−
1
Options
@@ -681,7 +681,10 @@ function node_reference_field_widget_form(&$form, &$form_state, $field, $instanc
*
* @codingStandardsIgnoreStart
*/
function
node_reference_autocomplete_value
(
$element
,
$input
=
FALSE
,
$form_state
)
{
function
node_reference_autocomplete_value
(
$element
,
$input
,
$form_state
)
{
if
(
!
isset
(
$input
))
{
$input
=
FALSE
;
}
// @codingStandardsIgnoreEnd
if
(
$input
===
FALSE
)
{
// We're building the displayed 'default value': expand the raw nid into
Loading