Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
Fix typo
· a1ff8ad2
ale
authored
Oct 13, 2023
a1ff8ad2
Hide whitespace changes
Inline
Side-by-side
veryplaintxt/sidebar.php
View file @
a1ff8ad2
...
...
@@ -12,7 +12,7 @@
<h3><label
for=
"s"
>
<?php
_e
(
'Search'
,
'veryplaintxt'
)
?>
</label></h3>
<form
id=
"searchform"
method=
"get"
action=
"
<?php
bloginfo
(
'home'
)
?>
"
>
<div>
<input
id=
"s"
name=
"s"
type=
"text"
value=
"
<?php
if
(
array_key_exists
(
$_GET
,
's'
))
{
echo
wp_specialchars
(
stripslashes
(
$_GET
[
's'
]),
true
)
}
?>
"
size=
"10"
/>
<input
id=
"s"
name=
"s"
type=
"text"
value=
"
<?php
if
(
array_key_exists
(
$_GET
,
's'
))
{
echo
wp_specialchars
(
stripslashes
(
$_GET
[
's'
]),
true
)
;
}
?>
"
size=
"10"
/>
<input
id=
"searchsubmit"
name=
"searchsubmit"
type=
"submit"
value=
"
<?php
_e
(
'Find'
,
'veryplaintxt'
)
?>
"
/>
</div>
</form>
...
...