kartik-v / yii2-export

A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)
http://demos.krajee.com/export
Other
165 stars 126 forks source link

stripHtml not working #333

Closed Mohsen6558 closed 2 years ago

Mohsen6558 commented 3 years ago

Hi Thanks for this good extention if ExportMenu.php Line 2132

        if ($this->stripHtml) {
            $value = strip_tags($value);
        }
        $value = html_entity_decode($value, ENT_QUOTES, 'UTF-8');

Not working I change it to:

        $value = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
        if ($this->stripHtml) {
            $value = strip_tags($value);
        }
--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/93231252-striphtml-not-working?utm_campaign=plugin&utm_content=tracker%2F7668315&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F7668315&utm_medium=issues&utm_source=github).
stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.