Skip to content

Commit

Permalink
don't use deprecated JArrayHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepereiradasilva committed Jan 16, 2016
1 parent 55bac8d commit 430ee03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/system/debug/debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

defined('_JEXEC') or die;

use Joomla\Utilities\ArrayHelper;

/**
* Joomla! Debug plugin.
*
Expand Down Expand Up @@ -416,7 +418,7 @@ protected function displaySession($key = '', $session = null, $id = 0)

if (is_object($entries))
{
$o = JArrayHelper::fromObject($entries);
$o = ArrayHelper::fromObject($entries);

if ($o)
{
Expand Down

0 comments on commit 430ee03

Please sign in to comment.