Fix component ID for 10.3.
1 unresolved thread
1 unresolved thread
Closes #3448606
Merge request reports
Activity
44 44 foreach ($libraries as $libraryId => $library) { 45 45 $libraryExtension = $extension; 46 46 $isSdc = FALSE; 47 if ($extension === 'sdc') { 48 $componentExtension = explode('--', $libraryId)[0]; 49 $libraryExtension = $componentExtension; 50 $isSdc = TRUE; 47 $prefix = 'components.'; 48 $componentId = ''; 49 50 if (str_starts_with($libraryId, $prefix)) { 51 if (substr($libraryId, 0, strlen($prefix)) == $prefix) { added 7 commits
-
70e99cfa...b84cac70 - 6 commits from branch
project:1.x
- cdf6d154 - Fix component ID for 10.3.
-
70e99cfa...b84cac70 - 6 commits from branch
Closing in favor of !14 (merged) which adds support for sdc in d10.3 without removing compatibility with earlier versions and adds documentation changes described in the issue summary.
Please register or sign in to reply