diff --git a/phpBB/assets/javascript/editor.js b/phpBB/assets/javascript/editor.js index 8b2d5741b7..3abf5c84f4 100644 --- a/phpBB/assets/javascript/editor.js +++ b/phpBB/assets/javascript/editor.js @@ -360,7 +360,7 @@ function getCaretPosition(txtarea) { } $('textarea').on('keydown', function (e) { - if (e.which === 13 && e.metaKey) { + if (e.which === 13 && (e.metaKey || e.ctrlKey)) { $(this).closest('form').submit(); } });