diff options
author | nod_ <nod_@598310.no-reply.drupal.org> | 2025-02-16 22:27:50 +0900 |
---|---|---|
committer | nod_ <nod_@598310.no-reply.drupal.org> | 2025-02-16 22:27:50 +0900 |
commit | 4837c52b95843fc633b2eec70198cac069a569b3 (patch) | |
tree | b40c8d29b3632ef6d89e5aa3d16410e7a64f22f3 /core/includes/theme.inc | |
parent | b9f3fe737c097a0f06387aadbfdda5d0a61992b1 (diff) | |
download | drupal-4837c52b95843fc633b2eec70198cac069a569b3.tar.gz drupal-4837c52b95843fc633b2eec70198cac069a569b3.zip |
Issue #3497105 by quietone, borisson_: Fix LineLength for inline comments
Diffstat (limited to 'core/includes/theme.inc')
-rw-r--r-- | core/includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/includes/theme.inc b/core/includes/theme.inc index e781e0d5835..21a6f7a87f5 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -825,8 +825,8 @@ function template_preprocess_table(&$variables): void { // Track responsive classes for each column as needed. Only the header // cells for a column are marked up with the responsive classes by a - // module developer or themer. The responsive classes on the header cells - // must be transferred to the content cells. + // module developer or themer. The responsive classes on the header + // cells must be transferred to the content cells. if (!empty($cell['class']) && is_array($cell['class'])) { if (in_array(RESPONSIVE_PRIORITY_MEDIUM, $cell['class'])) { $responsive_classes[$responsive_index] = RESPONSIVE_PRIORITY_MEDIUM; |