We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2e42f commit 3e849f1Copy full SHA for 3e849f1
webroot/panel/account.php
@@ -46,7 +46,7 @@
46
}
47
$keys = array_map("trim", $keys);
48
foreach ($keys as $key) {
49
- $keyShort = shortenString($key, 10, 10);
+ $keyShort = shortenString($key, 10, 30);
50
try {
51
$keyWasAdded = $USER->addSSHKey($key, $OPERATOR);
52
if ($keyWasAdded) {
@@ -64,7 +64,7 @@
64
case "delKey":
65
$index = str2int(UnityHTTPD::getPostData("delIndex"));
66
$key = $USER->removeSSHKey($index, $OPERATOR);
67
68
UnityHTTPD::messageSuccess("SSH Key Removed", $keyShort);
69
UnityHTTPD::redirect();
70
break;
0 commit comments