summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-27 19:37:28 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-11-27 19:37:28 +0100
commit32adb2fb72f4f4b1ddbd9a73b03cd67ec1c3a32d (patch)
treed1f4ed91a16cbcf657bd72ce764717aec9e84155 /CONTRIBUTING.md
parent38a62156ee4e89bedad501d173e62813df6b2b49 (diff)
update contributing
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index cd816fd53..21fc09382 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -30,7 +30,7 @@ check if:
### When reporting bugs
* Enable debug mode in your **config/config.php**:
- * ownCloud >=8.2: Add this attribute to config array:
+ * ownCloud >=8.2: Add the **debug** attribute to config array (if not already present) and set it to **true**:
```php
<?php
$CONFIG = array(
@@ -39,7 +39,7 @@ check if:
'debug' => true,
);
```
- * ownCloud < 8.2: Add **DEFINE('DEBUG', true);** this at the end of the file
+ * ownCloud < 8.2: Add **DEFINE('DEBUG', true);** at the end of the file
```php
<?php
$CONFIG = array(