Update references to the friendica/friendica stable branch

This commit is contained in:
Hypolite Petovan 2020-06-15 13:47:23 -04:00
parent b9873a88a5
commit 9c6fbc6a74
20 changed files with 56 additions and 55 deletions

View file

@ -548,7 +548,7 @@ class Site extends BaseAdmin
$check_git_version_choices = [
'none' => DI::l10n()->t('Don\'t check'),
'master' => DI::l10n()->t('check the stable version'),
'stable' => DI::l10n()->t('check the stable version'),
'develop' => DI::l10n()->t('check the development version')
];

View file

@ -75,8 +75,8 @@ class Summary extends BaseAdmin
}
}
// Check if github.com/friendica/master/VERSION is higher then
// the local version of Friendica. Check is opt-in, source may be master or devel branch
// Check if github.com/friendica/stable/VERSION is higher then
// the local version of Friendica. Check is opt-in, source may be stable or develop branch
if (DI::config()->get('system', 'check_new_version_url', 'none') != 'none') {
$gitversion = DI::config()->get('system', 'git_friendica_version');
if (version_compare(FRIENDICA_VERSION, $gitversion) < 0) {