- Issue created by @Simon Peacock
- last update
over 1 year ago Build Successful - Status changed to Needs review
over 1 year ago 8:37am 31 May 2023 - Open on Drupal.org →Core: 10.1.x + Environment: PHP 8.1 & MySQL 5.7last update
over 1 year ago Waiting for branch to pass - 🇪🇨Ecuador dmezquia UTC-5
I am also getting similar warnings in the .module.
- First commit to issue fork.
- Merge request !23Issue #3363668: Undefined array key "column_relations" → (Closed) created by tashaharrison80
- Open on Drupal.org →Core: 10.1.x + Environment: PHP 8.1 & MySQL 5.7last update
12 months ago Waiting for branch to pass - Status changed to Needs work
10 months ago 9:35pm 31 January 2024 - 🇨🇦Canada joseph.olstad
To fix the conflict, revert this first, then apply patch #4
generate new patch from this.
Revert this change first.
diff --git a/view_custom_table.module b/view_custom_table.module index 376e913..f8ce504 100644 --- a/view_custom_table.module +++ b/view_custom_table.module @@ -83,6 +83,10 @@ function view_custom_table_views_data() { $column_type_values = explode('(', $column->Type); $column_type = $column_type_values[0]; } + else if (strpos($column->Type, ' unsigned')) { + $column_type_values = explode(' unsigned', $column->Type); + $column_type = $column_type_values[0]; + } else { $column_type = $column->Type; }
- 🇨🇦Canada joseph.olstad
Re-rolled by refactoring conflicts in a friendly manner.
- Status changed to Needs review
9 months ago 3:26am 12 February 2024 - last update
9 months ago Build Successful The last submitted patch, 13: view_custom_table-3363668-13.patch, failed testing. View results →
- codesniffer_fixes.patch Interdiff of automated coding standards fixes only.-
joseph.olstad →
committed 84fe9038 on 2.0.x authored by
Simon Peacock →
Issue #3363668 by Simon Peacock, tashaharrison80, joseph.olstad,...
-
joseph.olstad →
committed 84fe9038 on 2.0.x authored by
Simon Peacock →
- Status changed to Fixed
9 months ago 4:15am 12 February 2024 - 🇨🇦Canada joseph.olstad
Tagging this change as 2.0.6-beta1
I'll revert this if there's any regressions.
Automatically closed - issue fixed for 2 weeks with no activity.