Skip to content

Commit

Permalink
Merge pull request #107 from centerax/fix-call-to-undefined-function-…
Browse files Browse the repository at this point in the history
…underscore

Fix Call to undefined function Magento\Ui\Controller\Adminhtml\Index\_()
  • Loading branch information
bbatsche authored Mar 30, 2018
2 parents 9d53562 + b628709 commit ccc5272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Ui/Controller/Adminhtml/Index/Render.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function execute()
} catch (\Exception $e) {
$this->logger->critical($e);
$result = [
'error' => _('UI component could not be rendered because of system exception'),
'error' => __('UI component could not be rendered because of system exception'),
'errorcode' => $this->escaper->escapeHtml($e->getCode())
];
/** @var \Magento\Framework\Controller\Result\Json $resultJson */
Expand Down

0 comments on commit ccc5272

Please sign in to comment.