Magento – magento order view information is blank page

magento-1.7

enter image description here
when I click order view in admin panel, the information is blank page.Anyone can help me out?? Thanks a lot.

Best Answer

I had the same issue, after checking the error log I noticed a PHP Parse error: syntax error, unexpected '['..... so check /app/code/core/Mage/Adminhtml/Helper/Sales.php line 121. Near:

public function escapeHtmlWithLinks($data, $allowedTags = null)
{
    if (!empty($data) && is_array($allowedTags) && in_array('a', $allowedTags)) {
        $links = [];

Change $links = []; to $links = array();

That did it for me, Cheers