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

github.com/erikdubbelboer/phpRedisAdmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut K. C. Tessarek <tessarek@evermeet.cx>2019-11-16 20:11:51 +0300
committerErik Dubbelboer <erik@dubbelboer.com>2019-11-16 20:11:51 +0300
commit5e870a22a8dda82cc148656a6462305576b807d6 (patch)
tree83e1b79b6677f878453b0c4074aa1434a0b15924
parent4a23c51c8b30409c57aa191cf74e29bae2b9c431 (diff)
fix keys ending in :0 shown as <empty> (#148)
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index ae5ad90..cd96cd3 100644
--- a/index.php
+++ b/index.php
@@ -96,7 +96,7 @@ if($redis) {
}
}
- if (empty($name)) {
+ if (empty($name) && $name != '0') {
$name = '<empty>';
}