Skip to content

Commit a4165cf

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.0.5' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.0.5
2 parents d5b5d44 + 1b86486 commit a4165cf

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

interface/web/js/scrigo.js.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ function generatePassword(passwordFieldID, repeatPasswordFieldID){
809809
oldPWField.remove();
810810
var pword = password(<?php echo $min_password_length; ?>, false, 1);
811811
jQuery('#'+repeatPasswordFieldID).val(pword);
812-
newPWField.attr('id', passwordFieldID).val(pword).trigger('keyup');
812+
newPWField.attr('id', passwordFieldID).val(pword).trigger('keyup').select();
813813
}
814814

815815
var funcDisableClick = function(e) { e.preventDefault(); return false; };

interface/web/themes/blue/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
161161
<!-- begin: #content -->
162162
<section id="content">
163163
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
164+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
164165
<div id="pageContent"><!-- AJAX CONTENT --></div>
165166
</form>
166167
<div id="ie_clearing">&nbsp;</div>

interface/web/themes/default-304/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
168168
<a id="content" name="content"></a>
169169
<!-- skiplink anchor: Content -->
170170
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
171+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
171172
<div id="pageContent"><!-- AJAX CONTENT --></div>
172173
</form>
173174
</div>

interface/web/themes/default/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
164164
<!-- begin: #content -->
165165
<section id="content">
166166
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
167+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
167168
<div id="pageContent"><!-- AJAX CONTENT --></div>
168169
</form>
169170
<div id="ie_clearing">&nbsp;</div>

interface/web/themes/default_64_navimg/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
168168
<a id="content" name="content"></a>
169169
<!-- skiplink anchor: Content -->
170170
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
171+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
171172
<div id="pageContent"><!-- AJAX CONTENT --></div>
172173
</form>
173174
</div>

interface/web/themes/default_combobox/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
323323
<a id="content" name="content"></a>
324324
<!-- skiplink anchor: Content -->
325325
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
326+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
326327
<div id="pageContent"><!-- AJAX CONTENT --></div>
327328
</form>
328329
</div>

interface/web/themes/default_no_navimg/templates/main.tpl.htm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name=
169169
<a id="content" name="content"></a>
170170
<!-- skiplink anchor: Content -->
171171
<form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
172+
<input type="text" style="display:none" /><input type="password" style="display:none"/>
172173
<div id="pageContent"><!-- AJAX CONTENT --></div>
173174
</form>
174175
</div>

0 commit comments

Comments
 (0)