Skip to content

Commit

Permalink
Update libraries/joomla/html/html/tabs.php
Browse files Browse the repository at this point in the history
  • Loading branch information
xilocex committed Feb 4, 2012
1 parent 396ceaa commit 1e2116a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/joomla/html/html/tabs.php
Expand Up @@ -76,7 +76,7 @@ protected static function _loadBehavior($group, $params = array())
{
static $loaded = array();

if (!array_key_exists($group, $loaded))
if (!array_key_exists((string) $group, $loaded))
{
// Include MooTools framework
JHtml::_('behavior.framework', true);
Expand Down Expand Up @@ -114,7 +114,7 @@ protected static function _loadBehavior($group, $params = array())
$document->addScriptDeclaration($js);
JHtml::_('script', 'system/tabs.js', false, true);

$loaded[$group] = true;
$loaded[(string) $group] = true;
}
}
}

0 comments on commit 1e2116a

Please sign in to comment.