Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Commits
a369a0e3
Commit
a369a0e3
authored
12 years ago
by
Daniel Wehner
Committed by
Tim Plunkett
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#1736458
: Remove a couple of debug messages in wizard tests.
parent
14540108
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
+13
-6
13 additions, 6 deletions
lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
with
13 additions
and
6 deletions
lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
+
13
−
6
View file @
a369a0e3
...
@@ -750,12 +750,19 @@ protected function default_display_sorts_user($form, $form_state) {
...
@@ -750,12 +750,19 @@ protected function default_display_sorts_user($form, $form_state) {
$column
=
$column
[
0
];
$column
=
$column
[
0
];
}
}
$sorts
[
$column
]
=
array
(
// If the input is invalid, for example when the #default_value contains
'id'
=>
$column
,
// created from node, but the wizard type is another base table, make
'table'
=>
$table
,
// sure it is not added. This usually don't happen if you have js
'field'
=>
$column
,
// enabled.
'order'
=>
$sort
,
$data
=
views_fetch_data
(
$table
);
);
if
(
isset
(
$data
[
$column
][
'sort'
]))
{
$sorts
[
$column
]
=
array
(
'id'
=>
$column
,
'table'
=>
$table
,
'field'
=>
$column
,
'order'
=>
$sort
,
);
}
}
}
return
$sorts
;
return
$sorts
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment