Skip to content

Commit

Permalink
Dev: fixed limestore broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
eddylackmann committed Jul 8, 2020
1 parent c0b3692 commit 9d2a5b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/core/LsDefaultDataSets.php
Expand Up @@ -147,7 +147,7 @@ public static function getBoxesData()
$returnArray[] = ['position' => 2, 'url' => 'admin/survey/sa/listsurveys', 'title' => gT('List surveys'), 'ico' => 'icon-list', 'desc' => gT('List available surveys'), 'page' => 'welcome', 'usergroup' => '-1'];
$returnArray[] = ['position' => 3, 'url' => 'admin/globalsettings', 'title' => gT('Global settings'), 'ico' => 'icon-settings', 'desc' => gT('Edit global settings'), 'page' => 'welcome', 'usergroup' => '-2'];
$returnArray[] = ['position' => 4, 'url' => 'admin/update', 'title' => gT('ComfortUpdate'), 'ico' => 'icon-shield', 'desc' => gT('Stay safe and up to date'), 'page' => 'welcome', 'usergroup' => '-2'];
$returnArray[] = ['position' => 5, 'url' => 'https://www.limesurvey.org/limestore', 'title' => 'LimeStore', 'ico' => 'fa fa-cart-plus', 'desc' => gT('LimeSurvey extension marketplace'), 'page' => 'welcome', 'usergroup' => '-2'];
$returnArray[] = ['position' => 5, 'url' => 'https://account.limesurvey.org/limestore', 'title' => 'LimeStore', 'ico' => 'fa fa-cart-plus', 'desc' => gT('LimeSurvey extension marketplace'), 'page' => 'welcome', 'usergroup' => '-2'];
$returnArray[] = ['position' => 6, 'url' => 'admin/themeoptions', 'title' => gT('Themes'), 'ico' => 'icon-templates', 'desc' => gT('Themes'), 'page' => 'welcome', 'usergroup' => '-2'];

App()->setLanguage($sOldLanguage);
Expand Down
2 changes: 1 addition & 1 deletion application/helpers/update/updatedb_helper.php
Expand Up @@ -2383,7 +2383,7 @@ function db_upgrade_all($iOldDBVersion, $bSilent = false)
'title' => 'LimeStore',
'ico' => 'fa fa-cart-plus',
'desc' => 'LimeSurvey extension marketplace',
'url' => 'https://www.limesurvey.org/limestore'
'url' => 'https://account.limesurvey.org/limestore'
],
'id = 5'
);
Expand Down

2 comments on commit 9d2a5b2

@ViliusS
Copy link
Contributor

@ViliusS ViliusS commented on 9d2a5b2 Jan 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just upgraded to latest 3.x and unfortunately this doesn't work when upgrading from DB version > 356. New LimeStore link needs to be included as a separate DBupdate job.

@eddylackmann
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ViliusS thanks for the report . This will be fixed in the next release. :)

Please sign in to comment.