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 84da18e commit 8a141fc
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://acccount.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 @@ -2385,7 +2385,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 8a141fc

@Shnoulle
Copy link
Collaborator

Choose a reason for hiding this comment

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

For future link : why not https://fixedlink.limesurvey.org/limestore fixedlink.limesurvey.org domain are only used for redirection :) then old LimeSurvey link still valid

@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.

@Shnoulle that's a great idea ...

Please sign in to comment.