33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-12-31 21:51:46 +00:00

Merge pull request #57 from dryabov/patch-7

Fix id prefix for consistency
This commit is contained in:
Anibal Sanchez 2019-05-17 11:24:09 +02:00 committed by GitHub
commit 5e894248bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ class JEDcheckerReport extends JObject
if ($compat_count > 0)
{
$collapseID = uniqid('warning_');
$collapseID = uniqid('compat_');
$html[] = '<div class="alert alert-warning" data-toggle="collapse" data-target="#' . $collapseID . '"><strong>' . $compat_count . ' ' . JText::_('COM_JEDCHECKER_COMPAT_ISSUES') . '</strong> - Click to View Details</div>';
$html[] = '<div id="' . $collapseID . '" class="collapse"><ul class="alert alert-warning">';