Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
RELEASE 1.2.3
Browse files Browse the repository at this point in the history
Make PS 1.7 explicitly unsupported
  • Loading branch information
drAlberT committed Oct 20, 2017
1 parent 1df5e17 commit 88bc851
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>faktiva_cleanurls</name>
<displayName><![CDATA[Faktiva Clean URLs]]></displayName>
<version><![CDATA[1.2.2]]></version>
<version><![CDATA[1.2.3]]></version>
<description><![CDATA[This override-Module allows you to remove URL ID&#039;s.]]></description>
<author><![CDATA[Faktiva]]></author>
<tab><![CDATA[seo]]></tab>
Expand Down
8 changes: 4 additions & 4 deletions faktiva_cleanurls.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct()
{
$this->name = 'faktiva_cleanurls';
$this->tab = 'seo';
$this->version = '1.2.2';
$this->version = '1.2.3';
$this->author = 'Faktiva';
$this->need_instance = 0;
$this->ps_versions_compliancy = array('min' => '1.5', 'max' => '1.6.99');
Expand All @@ -44,7 +44,7 @@ public function __construct()
parent::__construct();

$this->displayName = $this->l('Faktiva Clean URLs');
$this->description = $this->l('This override-Module allows you to remove URL ID\'s.');
$this->description = $this->l('This override-module allows you to remove URL ID\'s.');

$this->confirmUninstall = $this->l('Are you sure you want to uninstall "Faktiva Clean URLs" module?');
}
Expand All @@ -54,8 +54,8 @@ public function getContent()
$output = '<p class="info">'
.$this->l('On some versions you could have to disable Cache, save, open your shop home page, than go back and enable it:').'<br><br>'
.sprintf('%s -> %s -> %s', $this->l('Advanced Parameters'), $this->l('Performance'), $this->l('Clear Smarty cache')).'<br>'
.sprintf('%s -> %s -> %s -> %s', $this->l('Preferences'), $this->l('SEO and URLs'), $this->l('Set userfriendly URL off'), $this->l('Save')).'<br>'
.sprintf('%s -> %s -> %s -> %s', $this->l('Preferences'), $this->l('SEO and URLs'), $this->l('Set userfriendly URL on'), $this->l('Save')).'<br>'
.sprintf('%s -> %s -> %s -> %s', $this->l('Preferences'), $this->l('SEO and URLs'), $this->l('Set user-friendly URL off'), $this->l('Save')).'<br>'
.sprintf('%s -> %s -> %s -> %s', $this->l('Preferences'), $this->l('SEO and URLs'), $this->l('Set user-friendly URL on'), $this->l('Save')).'<br>'
.'</p>';

$sql = 'SELECT * FROM `'._DB_PREFIX_.'product_lang`
Expand Down

0 comments on commit 88bc851

Please sign in to comment.