From: Danny B Date: Tue, 6 Jan 2009 02:50:24 +0000 (+0000) Subject: * Added "Advanced search" link to the search form X-Git-Tag: 1.31.0-rc.0~43557 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=de116119f2ecadaaffafcaf775f18390f1c6db22;p=lhc%2Fweb%2Fwiklou.git * Added "Advanced search" link to the search form --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 14dce00ecb..0a49ba3011 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -257,6 +257,7 @@ The following extensions are migrated into MediaWiki 1.14: move log * Image moving is now enabled for sysops by default * Make "Did you mean" search feature more noticeable +* Added "Advanced search" link to the search form === Bug fixes in 1.14 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 98fe8536cb..1abab6f13b 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1446,7 +1446,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '195'; +$wgStyleVersion = '196'; # Server-side caching: diff --git a/includes/Skin.php b/includes/Skin.php index 636b96bf75..01d821ba5a 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1148,7 +1148,8 @@ END; . '\n" . ' ' - . '\n"; + . '\n" + . ''; // Ensure unique id's for search boxes made after the first $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; diff --git a/skins/CologneBlue.php b/skins/CologneBlue.php index f3806dc998..0c5b0152d8 100644 --- a/skins/CologneBlue.php +++ b/skins/CologneBlue.php @@ -299,7 +299,8 @@ class SkinCologneBlue extends Skin { $s .= "searchboxes}\" class=\"mw-searchInput\" name=\"search\" size=\"14\" value=\"" . htmlspecialchars(substr($search,0,256)) . "\" />
" . "searchboxes}\" class=\"searchButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" />" - . "searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />"; + . "searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />\n" + . ''; // Ensure unique id's for search boxes made after the first $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; diff --git a/skins/Modern.php b/skins/Modern.php index cb24bafaef..c16ae47668 100644 --- a/skins/Modern.php +++ b/skins/Modern.php @@ -256,6 +256,7 @@ class ModernTemplate extends QuickTemplate { ?> value="text('search') ?>" /> skin->tooltipAndAccesskey( 'search-go' ); ?> />  skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> + diff --git a/skins/MonoBook.php b/skins/MonoBook.php index 8afc4982e3..62d98baa7c 100644 --- a/skins/MonoBook.php +++ b/skins/MonoBook.php @@ -259,6 +259,7 @@ class MonoBookTemplate extends QuickTemplate { ?> value="text('search') ?>" /> skin->tooltipAndAccesskey( 'search-go' ); ?> />  skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> + diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 7e5809b55a..c89e77e808 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -715,7 +715,9 @@ input.searchButton { padding: .5em .4em .4em .4em; text-align: center; } - +#p-search a { + font-size: 95%; +} /* ** the personal toolbar */