- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: No interpretation for grid title after install patch
@dazai_dolbac have you checked the logs?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: No interpretation for grid title after install patch
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: No interpretation for grid title after install patch
@dazai_dolbac can you please share the errors on your browser console if any?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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