Skip to content

Commit

Permalink
Add proper versioning for doc URL
Browse files Browse the repository at this point in the history
As per 8.1 we have docs for minor versions as well so we need to link to `8.1` here instead to `8.0`.

Fixes #16002
  • Loading branch information
LukasReschke committed May 2, 2015
1 parent 6528a17 commit 6738c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/defaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function __construct() {
$this->defaultiTunesAppId = '543672169';
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
$this->defaultDocBaseUrl = 'https://doc.owncloud.org';
$this->defaultDocVersion = $version[0] . '.0'; // used to generate doc links
$this->defaultDocVersion = $version[0] . '.' . $version[1]; // used to generate doc links
$this->defaultSlogan = $this->l->t('web services under your control');
$this->defaultLogoClaim = '';
$this->defaultMailHeaderColor = '#1d2d44'; /* header color of mail notifications */
Expand Down

0 comments on commit 6738c17

Please sign in to comment.