Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
92b10946
Commit
92b10946
authored
May 01, 2005
by
Dries
Browse files
- Patch
#21686
by Robin Monks: added two missing t() functions.
parent
bca14f89
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/user.module
View file @
92b10946
...
...
@@ -1388,12 +1388,12 @@ function user_admin_access_check() {
$form
=
form_textfield
(
t
(
'Username'
),
'test'
,
''
,
32
,
64
,
t
(
'Enter a username to check if it will be denied or allowed.'
));
$form
.
=
form_hidden
(
'type'
,
'user'
);
$form
.
=
form_submit
(
'Check username'
);
$form
.
=
form_submit
(
t
(
'Check username'
)
)
;
$output
.
=
form
(
$form
);
$form
=
form_textfield
(
t
(
'E-mail'
),
'test'
,
''
,
32
,
64
,
t
(
'Enter an e-mail address to check if it will be denied or allowed.'
));
$form
.
=
form_hidden
(
'type'
,
'mail'
);
$form
.
=
form_submit
(
'Check e-mail'
);
$form
.
=
form_submit
(
t
(
'Check e-mail'
)
)
;
$output
.
=
form
(
$form
);
return
$output
;
...
...
modules/user/user.module
View file @
92b10946
...
...
@@ -1388,12 +1388,12 @@ function user_admin_access_check() {
$form
=
form_textfield
(
t
(
'Username'
),
'test'
,
''
,
32
,
64
,
t
(
'Enter a username to check if it will be denied or allowed.'
));
$form
.
=
form_hidden
(
'type'
,
'user'
);
$form
.
=
form_submit
(
'Check username'
);
$form
.
=
form_submit
(
t
(
'Check username'
)
)
;
$output
.
=
form
(
$form
);
$form
=
form_textfield
(
t
(
'E-mail'
),
'test'
,
''
,
32
,
64
,
t
(
'Enter an e-mail address to check if it will be denied or allowed.'
));
$form
.
=
form_hidden
(
'type'
,
'mail'
);
$form
.
=
form_submit
(
'Check e-mail'
);
$form
.
=
form_submit
(
t
(
'Check e-mail'
)
)
;
$output
.
=
form
(
$form
);
return
$output
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment