Skip to content
Snippets Groups Projects
Commit a604a5e1 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Fixing an HTML error in the metadata overview template

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@420 44740490-163a-0410-bde0-09ae8108e29a
parent abee54c1
No related branches found
No related tags found
No related merge requests found
...@@ -38,12 +38,12 @@ ...@@ -38,12 +38,12 @@
} }
echo '<div style="margin-left: 1em">'; echo '<div style="margin-left: 1em">';
echo '<div class="efieldlist"><h5>Required fields<h5>'; echo '<div class="efieldlist"><h5>Required fields</h5>';
echo '<dl>'; echo '<dl>';
foreach ($entity['required.found'] AS $key => $value) { foreach ($entity['required.found'] AS $key => $value) {
echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>'; echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>';
} }
echo '</dl>'; echo '</dl>' . "\n\n";
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
echo '</ul>'; echo '</ul>';
} }
echo '</div></div>'; echo '</div></div>';
echo '</div>'; echo '</div>' . "\n\n";;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment