This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
kiduc
/
bibiuc.com
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
59
Wiki
Activity
Browse Source
label for must = input id
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#using_the_for_attribute
pull/431/head
sean1138
4 years ago
parent
152b5990bb
commit
0df2478879
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
system/admin/views/config.html.php
+ 1
- 1
system/admin/views/config.html.php
View File
@ -41,7 +41,7 @@
foreach
(
$array
as
$key
=>
$value
)
{
echo
'<tr>'
;
echo
'<td><label for="'
.
$key
.
'">'
.
$key
.
'</label></td>'
;
echo
'<td><input type="text" name="-config-'
.
$key
.
'" value="'
.
valueMaker
(
$value
)
.
'"></td>'
;
echo
'<td><input type="text"
id="'
.
$key
.
'"
name="-config-'
.
$key
.
'" value="'
.
valueMaker
(
$value
)
.
'"></td>'
;
echo
'</tr>'
;
}
?>
Write
Preview
Loading…
Cancel
Save