mirror of
https://github.com/nextcloud/nextcloud.com.git
synced 2026-01-12 15:44:37 +00:00
15 lines
354 B
Plaintext
15 lines
354 B
Plaintext
<?php
|
|
// Enables CONTRIBOOK (required mysql database)
|
|
define(CONTRIBOOK, 0);
|
|
|
|
// Defines the author id of the official user posting announcements (used to produce rss feed)
|
|
define(OFFICIALAUTHORID, 1);
|
|
|
|
// Enables or disables the piwik tracking code
|
|
define(PIWIKTRACKING, 0);
|
|
|
|
// Recaptcha
|
|
DEFINE(RECAPTCHA_SITEKEY, '');
|
|
DEFINE(RECAPTCHA_SECRET, '');
|
|
?>
|