summaryrefslogtreecommitdiff
path: root/pear/scripts/pearcmd-show-config.php
diff options
context:
space:
mode:
Diffstat (limited to 'pear/scripts/pearcmd-show-config.php')
-rw-r--r--pear/scripts/pearcmd-show-config.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/pear/scripts/pearcmd-show-config.php b/pear/scripts/pearcmd-show-config.php
deleted file mode 100644
index 0ebc70a38a..0000000000
--- a/pear/scripts/pearcmd-show-config.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-$keys = $config->getKeys();
-foreach ($keys as $key) {
- $value = $config->get($key);
- $xi = "";
- if ($config->isDefaulted($key)) {
- $xi .= " (default)";
- }
- if (isset($fallback_done[$key])) {
- $xi .= " (built-in)";
- }
- printf("%s = %s%s\n", $key, $value, $xi);
-}
-
-?> \ No newline at end of file