Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix handling of headings in table header cells #1457

Merged
merged 25 commits into from
Oct 12, 2020
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7f33c01
[lib/version] Configure master branch back to dev
andrerom May 15, 2019
056c237
Update composer.json
andrerom May 15, 2019
5a27072
Update version.php
andrerom May 15, 2019
8392268
Merge branch '2019.03'
andrerom May 16, 2019
caeda60
Merge branch '2019.03'
andrerom May 16, 2019
fb58e79
Popup for the custom tag sub/sup fixed (#1434)
pkamps Jun 27, 2019
a8d24e4
Fix EZP-30718: Allow RerunURL to be used on hidden pages (#1435)
peterkeung Jul 9, 2019
98b8f48
DFS: Cache gen. timeout check only when needed (#1436)
glye Jul 12, 2019
50c046f
Revert "DFS: Cache gen. timeout check only when needed (#1436)"
glye Jul 12, 2019
e1f6eef
Merge branch '2019.03'
glye Jul 12, 2019
81ceb66
Merge branch '2019.03'
glye Jul 12, 2019
ab82190
Fix EZP-30767: Allow the developer to override the page to load on a …
peterkeung Jul 22, 2019
7339678
Merge branch '2019.03'
andrerom Aug 9, 2019
10a9118
Merge branch '2019.03'
andrerom Nov 1, 2019
b240b93
Merge branch '2019.03'
andrerom Nov 1, 2019
21afcde
Merge branch '2019.03'
andrerom Nov 1, 2019
d73654f
Merge branch '2019.03'
andrerom Nov 1, 2019
20aab32
Merge branch '2019.03'
andrerom Dec 18, 2019
7b73fcb
Merge branch '2019.03'
andrerom Dec 18, 2019
c49eef9
Merge branch '2019.03'
glye Mar 3, 2020
d659392
eZObjectRelationList: Do not store content attribute in fetch call (#…
SerheyDolgushev May 12, 2020
bced04a
Merge branch '2019.03'
glye May 22, 2020
14367f8
Merge branch '2019.03'
glye May 22, 2020
0ba7840
fix handling of headings in table header cells
hknezevic May 22, 2020
56ffe40
Revert version.php changes
andrerom Oct 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ function structHandlerHeader( $element, $newParent )
{
++$sectionLevel;
}
elseif ( $current->nodeName === 'td' )
elseif ( $current->nodeName === 'td' || $current->nodeName === 'th' )
{
++$sectionLevel;
break;
Expand Down