Skip to content

Commit

Permalink
fixed help wizard bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kiesel authored and Daniel Kiesel committed Nov 5, 2016
1 parent acd2607 commit b11c262
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Util/Helpwizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

use Contao\Controller;

class Helpwizard extends Controller
class Helpwizard
{
/**
* @return array
Expand All @@ -39,8 +39,8 @@ protected function getHelpwizardReferencesBy($strTable)
{
$arrReferences = array();

$this->loadLanguageFile($strTable);
$this->loadDataContainer($strTable);
Controller::loadLanguageFile($strTable);
Controller::loadDataContainer($strTable);

if (isset($GLOBALS['TL_DCA'][$strTable]['fields']) && is_array($GLOBALS['TL_DCA'][$strTable]['fields'])) {
foreach ($GLOBALS['TL_DCA'][$strTable]['fields'] as $strField => $arrValues) {
Expand Down

0 comments on commit b11c262

Please sign in to comment.