aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2022-11-09 19:29:30 -0500
committerBrian Evans <grknight@gentoo.org>2022-11-09 19:29:30 -0500
commitc1835c3f4e8caec8375ba2db20e909c2ed8a62d3 (patch)
tree48c48bef6a6c449fef195c4689b35c9384061032
parentFix search box errors (diff)
downloadskin-tyrian-c1835c3f4e8caec8375ba2db20e909c2ed8a62d3.tar.gz
skin-tyrian-c1835c3f4e8caec8375ba2db20e909c2ed8a62d3.tar.bz2
skin-tyrian-c1835c3f4e8caec8375ba2db20e909c2ed8a62d3.zip
Fix labeling of new search buttons
Signed-off-by: Brian Evans <grknight@gentoo.org>
-rw-r--r--TyrianTemplate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/TyrianTemplate.php b/TyrianTemplate.php
index a6bfb02..b27acf8 100644
--- a/TyrianTemplate.php
+++ b/TyrianTemplate.php
@@ -239,14 +239,14 @@ class TyrianTemplate extends BaseTemplate {
'input',
array_merge(
$data[ 'array-button-go-attributes' ],
- [ "id" => "searchGoButton", "class" => "searchButton btn btn-default" ]
+ [ "id" => "searchGoButton", "class" => "searchButton btn btn-default", "value" => $this->getMsg( 'searcharticle' ) ]
)
);
$searchFulltextButton = Html::element(
'input',
array_merge(
$data[ 'array-button-fulltext-attributes' ],
- [ "id" => "mw-searchButton", "class" => "searchButton btn btn-default" ]
+ [ "id" => "mw-searchButton", "class" => "searchButton btn btn-default", "value" => $this->getMsg( 'searchbutton' ) ]
)
);
}