Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
220
Merge Requests
220
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
b354396b
Commit
b354396b
authored
Apr 20, 2006
by
Gerhard Killesreiter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#59528
, password_confirm fields don't highlight errors, patch by sammys
parent
a99b66c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
15 deletions
+16
-15
includes/form.inc
includes/form.inc
+14
-3
modules/system.module
modules/system.module
+1
-6
modules/system/system.module
modules/system/system.module
+1
-6
No files found.
includes/form.inc
View file @
b354396b
...
@@ -713,6 +713,18 @@ function theme_password_confirm($element) {
...
@@ -713,6 +713,18 @@ function theme_password_confirm($element) {
return
theme
(
'form_element'
,
$element
[
'#title'
],
'<div class="container-inline">'
.
$element
[
'#children'
]
.
'</div>'
,
$element
[
'#description'
],
$element
[
'#id'
],
$element
[
'#required'
],
form_get_error
(
$element
));
return
theme
(
'form_element'
,
$element
[
'#title'
],
'<div class="container-inline">'
.
$element
[
'#children'
]
.
'</div>'
,
$element
[
'#description'
],
$element
[
'#id'
],
$element
[
'#required'
],
form_get_error
(
$element
));
}
}
/*
* Expand a password_confirm field into two text boxes.
*/
function
expand_password_confirm
(
$element
)
{
$element
[
'pass1'
]
=
array
(
'#type'
=>
'password'
,
'#size'
=>
12
,
'#value'
=>
$element
[
'#value'
][
'pass1'
]);
$element
[
'pass2'
]
=
array
(
'#type'
=>
'password'
,
'#size'
=>
12
,
'#value'
=>
$element
[
'#value'
][
'pass2'
]);
$element
[
'#validate'
]
=
array
(
'password_confirm_validate'
=>
array
());
$element
[
'#tree'
]
=
TRUE
;
return
$element
;
}
/**
/**
* Validate password_confirm element.
* Validate password_confirm element.
*/
*/
...
@@ -725,13 +737,12 @@ function password_confirm_validate($form) {
...
@@ -725,13 +737,12 @@ function password_confirm_validate($form) {
form_set_value
(
$form
,
$pass1
);
form_set_value
(
$form
,
$pass1
);
if
(
$pass1
!=
$pass2
)
{
if
(
$pass1
!=
$pass2
)
{
form_error
(
$form
,
t
(
'The specified passwords do not match.'
));
form_error
(
$form
,
t
(
'The specified passwords do not match.'
));
form_error
(
$form
[
'pass1'
]);
form_error
(
$form
[
'pass2'
]);
}
}
}
}
elseif
(
$form
[
'#required'
]
&&
!
empty
(
$_POST
[
'edit'
]))
{
elseif
(
$form
[
'#required'
]
&&
!
empty
(
$_POST
[
'edit'
]))
{
form_
set_error
(
'pass1'
,
t
(
'Password field is required.'
));
form_
error
(
$form
,
t
(
'Password field is required.'
));
}
}
return
$form
;
return
$form
;
}
}
...
...
modules/system.module
View file @
b354396b
...
@@ -63,12 +63,7 @@ function system_elements() {
...
@@ -63,12 +63,7 @@ function system_elements() {
$type
[
'button'
]
=
array
(
'#input'
=>
TRUE
,
'#name'
=>
'op'
,
'#button_type'
=>
'submit'
,
'#form_submitted'
=>
FALSE
);
$type
[
'button'
]
=
array
(
'#input'
=>
TRUE
,
'#name'
=>
'op'
,
'#button_type'
=>
'submit'
,
'#form_submitted'
=>
FALSE
);
$type
[
'textfield'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
60
,
'#maxlength'
=>
128
,
'#autocomplete_path'
=>
FALSE
);
$type
[
'textfield'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
60
,
'#maxlength'
=>
128
,
'#autocomplete_path'
=>
FALSE
);
$type
[
'password'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
30
);
$type
[
'password'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
30
);
$type
[
'password_confirm'
]
=
array
(
'#input'
=>
TRUE
,
$type
[
'password_confirm'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_password_confirm'
=>
array
()));
'#value'
=>
'pass'
,
'pass1'
=>
array
(
'#type'
=>
'password'
,
'#size'
=>
12
),
'pass2'
=>
array
(
'#type'
=>
'password'
,
'#size'
=>
12
),
'#validate'
=>
array
(
'password_confirm_validate'
=>
array
()),
);
$type
[
'textarea'
]
=
array
(
'#input'
=>
TRUE
,
'#cols'
=>
60
,
'#rows'
=>
5
);
$type
[
'textarea'
]
=
array
(
'#input'
=>
TRUE
,
'#cols'
=>
60
,
'#rows'
=>
5
);
$type
[
'radios'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_radios'
=>
array
()));
$type
[
'radios'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_radios'
=>
array
()));
$type
[
'radio'
]
=
array
(
'#input'
=>
TRUE
);
$type
[
'radio'
]
=
array
(
'#input'
=>
TRUE
);
...
...
modules/system/system.module
View file @
b354396b
...
@@ -63,12 +63,7 @@ function system_elements() {
...
@@ -63,12 +63,7 @@ function system_elements() {
$type
[
'button'
]
=
array
(
'#input'
=>
TRUE
,
'#name'
=>
'op'
,
'#button_type'
=>
'submit'
,
'#form_submitted'
=>
FALSE
);
$type
[
'button'
]
=
array
(
'#input'
=>
TRUE
,
'#name'
=>
'op'
,
'#button_type'
=>
'submit'
,
'#form_submitted'
=>
FALSE
);
$type
[
'textfield'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
60
,
'#maxlength'
=>
128
,
'#autocomplete_path'
=>
FALSE
);
$type
[
'textfield'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
60
,
'#maxlength'
=>
128
,
'#autocomplete_path'
=>
FALSE
);
$type
[
'password'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
30
);
$type
[
'password'
]
=
array
(
'#input'
=>
TRUE
,
'#size'
=>
30
);
$type
[
'password_confirm'
]
=
array
(
'#input'
=>
TRUE
,
$type
[
'password_confirm'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_password_confirm'
=>
array
()));
'#value'
=>
'pass'
,
'pass1'
=>
array
(
'#type'
=>
'password'
,
'#size'
=>
12
),
'pass2'
=>
array
(
'#type'
=>
'password'
,
'#size'
=>
12
),
'#validate'
=>
array
(
'password_confirm_validate'
=>
array
()),
);
$type
[
'textarea'
]
=
array
(
'#input'
=>
TRUE
,
'#cols'
=>
60
,
'#rows'
=>
5
);
$type
[
'textarea'
]
=
array
(
'#input'
=>
TRUE
,
'#cols'
=>
60
,
'#rows'
=>
5
);
$type
[
'radios'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_radios'
=>
array
()));
$type
[
'radios'
]
=
array
(
'#input'
=>
TRUE
,
'#process'
=>
array
(
'expand_radios'
=>
array
()));
$type
[
'radio'
]
=
array
(
'#input'
=>
TRUE
);
$type
[
'radio'
]
=
array
(
'#input'
=>
TRUE
);
...
...
Write
Preview
Markdown
is supported
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