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

github.com/nextcloud/issuetemplate.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2016-08-25 22:58:07 +0300
committerJulius Haertl <jus@bitgrid.net>2016-08-25 22:58:07 +0300
commit9fb22f051838042a56dba4f54e4cc68b04f6fc4f (patch)
treead34c8360fd1c2bdf7fa2972fbafe3ed0b64bc61 /templates
parent5fc78845aebeed48c095f3a59a417edc87e8c7e8 (diff)
Add more details on integrity, webserver, php, nc version
Diffstat (limited to 'templates')
-rw-r--r--templates/issuetemplate.php21
1 files changed, 11 insertions, 10 deletions
diff --git a/templates/issuetemplate.php b/templates/issuetemplate.php
index 1c162dc..2aec47a 100644
--- a/templates/issuetemplate.php
+++ b/templates/issuetemplate.php
@@ -23,28 +23,29 @@
<details>
<summary>Signing status</summary>
- ```
- <?php p(implode($_['integrity'],",")); ?>
- ```
+```
+<?php print_unescaped(print_r(json_encode($_['integrity'], JSON_PRETTY_PRINT), true)); ?>
+
+```
+
</details>
**List of activated apps:**
<details>
<summary>App list</summary>
-
- ```
- Enabled:
+```
+Enabled:
<?php
foreach ($_['apps']['enabled'] as $name => $version) {
- p("\t - " . $name . ": " . $version . "\n");
+ p(" - " . $name . ": " . $version . "\n");
} ?>
- Disabled:
+Disabled:
<?php
foreach ($_['apps']['disabled'] as $name => $version) {
- p("\t - " . $name . "\n");
+ p(" - " . $name . "\n");
} ?>
- ```
+```
</details>
**The content of config/config.php:**