We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line 273: utf8_decode() has only 1 parameter possible not 3. Confusion with html_entity_decode() Error since 1.5.6.4 at least.
The text was updated successfully, but these errors were encountered:
Line 273 in upload/catalog/model/openbay/ebay_product.php in OC 2.0.3.1 is:
upload/catalog/model/openbay/ebay_product.php
$this->db->query( "INSERT INTO `" . DB_PREFIX . "product_description` SET `product_id` = '" . (int)$product_id . "', `language_id` = '" . (int)$this->config->get('config_language_id') . "', `name` = '" . $this->db->escape(htmlspecialchars(base64_decode($item['Title']), ENT_COMPAT, 'UTF-8')) . "', `description` = '" . $this->db->escape(htmlspecialchars(utf8_encode($item['Description']), ENT_COMPAT, 'UTF-8')) . "'");
There is no utf_decode(), but utf_encode(); by the way, it has just one parameter which is $item['Description'].
utf_decode()
utf_encode()
$item['Description']
So, what's the problem? I really don't understand this issue.
Sorry, something went wrong.
You are right, I missed the closing )
No branches or pull requests
Line 273: utf8_decode() has only 1 parameter possible not 3.
Confusion with html_entity_decode()
Error since 1.5.6.4 at least.
The text was updated successfully, but these errors were encountered: