We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db9869 commit e2e738aCopy full SHA for e2e738a
app/code/core/Mage/Core/Helper/Abstract.php
@@ -250,6 +250,9 @@ function ($matches) {
250
*/
251
public function stripTags($data, $allowableTags = null, $escape = false)
252
{
253
+ if ($data === null) {
254
+ return '';
255
+ }
256
$result = strip_tags($data, $allowableTags);
257
return $escape ? $this->escapeHtml($result, $allowableTags) : $result;
258
}
0 commit comments