Skip to content

Commit

Permalink
[-] MO : Bug fix : Removed & from config file (XML parsing issues)
Browse files Browse the repository at this point in the history
  • Loading branch information
François Gaillard committed Feb 15, 2013
1 parent 82c497e commit 62f5154
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions itembase/config.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>itembase</name>
<displayName><![CDATA[itembase]]></displayName>
<version><![CDATA[2.0]]></version>
<description><![CDATA[itembase - Personal Shopping Manager &amp; Inventory (SEO links, Brand Booster, Traffic Source, Affiliate Channel)]]></description>
<author><![CDATA[itembase]]></author>
<tab><![CDATA[others]]></tab>
<is_configurable>1</is_configurable>
<need_instance>0</need_instance>
<module>
<name>itembase</name>
<displayName><![CDATA[itembase]]></displayName>
<version><![CDATA[2.0]]></version>
<description><![CDATA[itembase - Personal Shopping Manager and Inventory (SEO links, Brand Booster, Traffic Source, Affiliate Channel)]]></description>
<author><![CDATA[itembase]]></author>
<tab><![CDATA[others]]></tab>
<is_configurable>1</is_configurable>
<need_instance>0</need_instance>
<limited_countries></limited_countries>
</module>
</module>
2 changes: 1 addition & 1 deletion itembase/itembase.php
Expand Up @@ -47,7 +47,7 @@ public function __construct()
parent::__construct();

$this->displayName = $this->l('itembase');
$this->description = $this->l('itembase - Personal Shopping Manager & Inventory (SEO links, Brand Booster, Traffic Source, Affiliate Channel)');
$this->description = $this->l('itembase - Personal Shopping Manager and Inventory (SEO links, Brand Booster, Traffic Source, Affiliate Channel)');

if (self::isInstalled($this->name)){
$warnings = array();
Expand Down
2 changes: 1 addition & 1 deletion stripejs/config.xml
Expand Up @@ -3,7 +3,7 @@
<name>stripejs</name>
<displayName><![CDATA[Stripe]]></displayName>
<version><![CDATA[0.9.4]]></version>
<description><![CDATA[Accept payments by Credit Card with Stripe (Visa, Mastercard, Amex, Discover &amp; Diners Club)]]></description>
<description><![CDATA[Accept payments by Credit Card with Stripe (Visa, Mastercard, Amex, Discover and Diners Club)]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[payments_gateways]]></tab>
<confirmUninstall>Warning: all the Stripe customers credit cards and transaction details saved in your database will be deleted. Are you sure you want uninstall this module?</confirmUninstall>
Expand Down
2 changes: 1 addition & 1 deletion stripejs/stripejs.php
Expand Up @@ -45,7 +45,7 @@ public function __construct()
parent::__construct();

$this->displayName = $this->l('Stripe');
$this->description = $this->l('Accept payments by Credit Card with Stripe (Visa, Mastercard, Amex, Discover & Diners Club)');
$this->description = $this->l('Accept payments by Credit Card with Stripe (Visa, Mastercard, Amex, Discover and Diners Club)');
$this->confirmUninstall = $this->l('Warning: all the Stripe customers credit cards and transaction details saved in your database will be deleted. Are you sure you want uninstall this module?');

/* Backward compatibility */
Expand Down

0 comments on commit 62f5154

Please sign in to comment.