Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added parameter default values #3087

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@


/**
* Where user files are stored.The SQLite database is also stored here, when
* Where user files are stored. The SQLite database is also stored here, when
* you use SQLite.
*
* Default to ``data/`` in the Nextcloud directory.
Expand Down Expand Up @@ -283,7 +283,7 @@
* FROM address that overrides the built-in ``sharing-noreply`` and
* ``lostpassword-noreply`` FROM addresses.
*
* Defaults to ``nextcloud``
* Defaults to different from addresses depending on the feature.
*/
'mail_from_address' => 'nextcloud',

Expand Down Expand Up @@ -762,6 +762,11 @@
/**
* This section is for configuring the download links for Nextcloud clients, as
* seen in the first-run wizard and on Personal pages.
*
* Defaults to
* * Desktop client: ```https://nextcloud.com/install/#install-clients```
Copy link
Member

Choose a reason for hiding this comment

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

should be two ticks only on each side, not 3

* * Android client: ```https://play.google.com/store/apps/details?id=com.nextcloud.client```
* * iOS client : ```https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8```
*/
'customclient_desktop' =>
'https://nextcloud.com/install/#install-clients',
Expand Down