Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -715,9 +715,7 @@ |
716 | 716 | padding: .5em .4em .4em .4em; |
717 | 717 | text-align: center; |
718 | 718 | } |
719 | | -#p-search a { |
720 | | - font-size: 95%; |
721 | | -} |
| 719 | + |
722 | 720 | /* |
723 | 721 | ** the personal toolbar |
724 | 722 | */ |
Index: trunk/phase3/skins/CologneBlue.php |
— | — | @@ -299,8 +299,7 @@ |
300 | 300 | $s .= "<input type='text' id=\"searchInput{$this->searchboxes}\" class=\"mw-searchInput\" name=\"search\" size=\"14\" value=\"" |
301 | 301 | . htmlspecialchars(substr($search,0,256)) . "\" /><br />" |
302 | 302 | . "<input type='submit' id=\"searchGoButton{$this->searchboxes}\" class=\"searchButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" />" |
303 | | - . "<input type='submit' id=\"mw-searchButton{$this->searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />\n" |
304 | | - . '<a href="' . wfMsg ('searchaction') . '" rel="search">' . wfMsg ('powersearch-legend') . '</a></form>'; |
| 303 | + . "<input type='submit' id=\"mw-searchButton{$this->searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" /></form>"; |
305 | 304 | |
306 | 305 | // Ensure unique id's for search boxes made after the first |
307 | 306 | $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -259,7 +259,6 @@ |
260 | 260 | ?> value="<?php $this->text('search') ?>"<?php } ?> /> |
261 | 261 | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> /> |
262 | 262 | <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg('searchbutton') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> |
263 | | - <a href="<?php $this->text('searchaction') ?>" rel="search"><?php $this->msg('powersearch-legend') ?></a> |
264 | 263 | </div></form> |
265 | 264 | </div> |
266 | 265 | </div> |
Index: trunk/phase3/skins/Modern.php |
— | — | @@ -256,7 +256,6 @@ |
257 | 257 | ?> value="<?php $this->text('search') ?>"<?php } ?> /> |
258 | 258 | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> /> |
259 | 259 | <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg('searchbutton') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> |
260 | | - <a href="<?php $this->text('searchaction') ?>" rel="search"><?php $this->msg('powersearch-legend') ?></a> |
261 | 260 | </div></form> |
262 | 261 | </div><!-- pBody --> |
263 | 262 | </div><!-- portlet --> |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1451,7 +1451,7 @@ |
1452 | 1452 | * to ensure that client-side caches don't keep obsolete copies of global |
1453 | 1453 | * styles. |
1454 | 1454 | */ |
1455 | | -$wgStyleVersion = '196'; |
| 1455 | +$wgStyleVersion = '195'; |
1456 | 1456 | |
1457 | 1457 | |
1458 | 1458 | # Server-side caching: |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1148,8 +1148,7 @@ |
1149 | 1149 | . '<input type="text" id="searchInput'.$this->searchboxes.'" name="search" size="19" value="' |
1150 | 1150 | . htmlspecialchars(substr($search,0,256)) . "\" />\n" |
1151 | 1151 | . '<input type="submit" name="go" value="' . wfMsg ('searcharticle') . '" /> ' |
1152 | | - . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n" |
1153 | | - . '<a href="' . wfMsg ('searchaction') . '" rel="search">' . wfMsg ('powersearch-legend') . '</a></form>'; |
| 1152 | + . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n</form>"; |
1154 | 1153 | |
1155 | 1154 | // Ensure unique id's for search boxes made after the first |
1156 | 1155 | $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -258,7 +258,6 @@ |
259 | 259 | move log |
260 | 260 | * Image moving is now enabled for sysops by default |
261 | 261 | * Make "Did you mean" search feature more noticeable |
262 | | -* Added "Advanced search" link to the search form |
263 | 262 | * (bug 2242) Add an expiry time to temporary passwords |
264 | 263 | * (bug 16720) Transcluded Special:NewPages processes "/username=" |
265 | 264 | |