Skip to content

Commit 54e5c90

Browse files
Fix close PopTable wrapper <div>
1 parent b2ddc42 commit 54e5c90

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Changes in 10.6.1
88
- SQL Fix regression since 10.0, change sum/cum factors & credit_attempted/earned columns type from double precision to numeric in Update.fnc.php
99
- Fix Grades input not displaying for Teachers in Widget.php
1010
- Raise minimum PHP version from 5.4.45 to 5.5.9 in INSTALL.md, README.md, composer.json, diagnostic.php & Portal.php
11+
- Fix close PopTable wrapper <div> in Enrollment.inc.php, General_Info.inc.php, Medical.inc.php & Schedule.inc.php
1112

1213
Changes in 10.6
1314
---------------

modules/Students/includes/Enrollment.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,5 +191,5 @@
191191

192192
if ( ! empty( $PopTable_opened ) )
193193
{
194-
echo '<table><tr><td>';
194+
echo '<div><table><tr><td>';
195195
}

modules/Students/includes/General_Info.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255

256256
if ( $PopTable_opened )
257257
{
258-
echo '<table><tr><td>';
258+
echo '<div><table><tr><td>';
259259

260260
PopTable( 'footer' );
261261
}

modules/Students/includes/Medical.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,6 @@
182182
if ( ! empty( $PopTable_opened ) )
183183
{
184184
// FJ bugfix display in PrintStudentInfo.php.
185-
echo '<table><tr><td>';
185+
echo '<div><table><tr><td>';
186186
}
187187
}

modules/Users/includes/Schedule.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174
if ( $PopTable_opened )
175175
{
176-
echo '<table><tr><td>';
176+
echo '<div><table><tr><td>';
177177
}
178178
}
179179

0 commit comments

Comments
 (0)