cancel
Showing results for 
Search instead for 
Did you mean: 

No interpretation for grid title after install patch

SOLVED

No interpretation for grid title after install patch

Hello,

 

Since i install security patch, i only have one problem.

All grid of my magento have title with no html interprate.

https://www.casimages.com/i/191127091254415715.png.html

 

As you can see on this picture for the magebird_popup grid, on each title, i have <br/> <span>...

I don't found why i have this problem

 

(Sorry for my english, i hope you understand my request).

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions

Re: No interpretation for grid title after install patch

Hello ! 

 

I found the problem this morning.

In app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php

I had 

. $this->escapeHtml($this->getColumn()->getHeader()) . '</span></a>';

i delete the escape html 

 . $this->getColumn()->getHeader().'</span></a>';

And it's working !

 

Thank

View solution in original post

9 REPLIES 9

Re: No interpretation for grid title after install patch

@dazai_dolbac have you checked by flushing cache and try to open in incognito mode of chrome.

If you had not flush the cache yet then try it using below command.

 

php bin/magento cache:flush

Thanks

Re: No interpretation for grid title after install patch

Hi,

 

Thank, but yes i have flush the cache 15 times :x but this not resolv my problem 

 

 

Re: No interpretation for grid title after install patch

@dazai_dolbac have you checked the logs?

 

Re: No interpretation for grid title after install patch

Yes, i have nothing in my error.log, access.log (in var/log/nginx) et nothing in my report/system.log/exception.log (in my project/var).

 

Sincerely

Re: No interpretation for grid title after install patch

@dazai_dolbac try using below command.

 

rm -rf var/cache/* var/view_preprocessed/*

Thanks

Re: No interpretation for grid title after install patch

Thank you, but i did too,
Next time i should describe what i already try ! Sorry!

 

Re: No interpretation for grid title after install patch

@dazai_dolbac can you please share the errors on your browser console if any?

Re: No interpretation for grid title after install patch

That why i ask here, i have nothing in my logs, nothing in my console, 0 ajax error in my network. Incredible, 0 indice to resolv this.

Re: No interpretation for grid title after install patch

Hello ! 

 

I found the problem this morning.

In app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php

I had 

. $this->escapeHtml($this->getColumn()->getHeader()) . '</span></a>';

i delete the escape html 

 . $this->getColumn()->getHeader().'</span></a>';

And it's working !

 

Thank