Skip to content

Commit

Permalink
Fixed #3769
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Feb 2, 2019
1 parent 1b839b0 commit 0bf9184
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fixed a bug where pressing the <kbd>Return</kbd> key on editable tables with a static number of rows would add a new row. ([#3765](https://github.com/craftcms/cms/issues/3765))
- Fixed a bug where pressing the <kbd>Return</kbd> key on editable tables would select the next row’s cell even if the cell was disabled.
- Fixed a bug where pressing the <kbd>Return</kbd> key on an editable table wouldn’t move the focus to the next row’s sell if it had an `<input>` instead of a `<textarea>`.
- Fixed an error that could occur in the Control Panel if any environment variable values began with an `@` character. ([#3769](https://github.com/craftcms/cms/issues/3769))

## 3.1.7 - 2019-01-31

Expand Down
2 changes: 1 addition & 1 deletion src/web/twig/variables/Cp.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public function getEnvSuggestions(bool $includeAliases = false): array
foreach (array_keys($_ENV) as $var) {
$envSuggestions[] = [
'name' => '$' . $var,
'hint' => $security->redactIfSensitive($var, Craft::getAlias(getenv($var)))
'hint' => $security->redactIfSensitive($var, Craft::getAlias(getenv($var), false))
];
}
ArrayHelper::multisort($envSuggestions, 'name');
Expand Down

0 comments on commit 0bf9184

Please sign in to comment.