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 e7eda99 commit 207b773Copy full SHA for 207b773
app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php
@@ -545,7 +545,8 @@ protected function _unserializeValue($value)
545
*/
546
public function getPrintableOptionValue($optionValue)
547
{
548
- return strip_tags($this->getFormattedOptionValue($optionValue));
+ $value = $this->getFormattedOptionValue($optionValue);
549
+ return $value === null ? '' : strip_tags($value);
550
}
551
552
/**
0 commit comments