Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJos Poortvliet <jospoortvliet@gmail.com>2018-02-27 21:54:13 +0300
committerJos Poortvliet <jos@opensuse.org>2018-02-27 22:31:11 +0300
commitffc28ee6362b6e00a82c9b4f9e7aca52977537ef (patch)
tree56ff25f6f7f50db0f1a9522bf503735686db6428 /config.php.sample
parent2cef05f113a9a4cb2e8b5c5bc679209941f8ccd0 (diff)
get rid of PHP warnings...
Signed-off-by: Jos Poortvliet <jospoortvliet@gmail.com>
Diffstat (limited to 'config.php.sample')
-rw-r--r--config.php.sample10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.php.sample b/config.php.sample
index d63fe1e9..0444f845 100644
--- a/config.php.sample
+++ b/config.php.sample
@@ -1,16 +1,16 @@
<?php
// Enables CONTRIBOOK (required mysql database)
-define(CONTRIBOOK, 0);
+define('CONTRIBOOK', 0);
// Defines the author id of the official user posting announcements (used to produce rss feed)
-define(OFFICIALAUTHORID, 1);
+define('OFFICIALAUTHORID', 1);
// Enables or disables the piwik tracking code
-define(PIWIKTRACKING, 0);
+define('PIWIKTRACKING', 0);
// Recaptcha
-DEFINE(RECAPTCHA_SITEKEY, '');
-DEFINE(RECAPTCHA_SECRET, '');
+DEFINE('RECAPTCHA_SITEKEY', '');
+DEFINE('RECAPTCHA_SECRET', '');
define('MAUTIC_URL', 'https://mautic.nextcloud.com');
define('MAUTIC_USERNAME', 'username');
define('MAUTIC_PASSWORD', 'password');