Index: trunk/tools/ToolserverI18N/TsIntuition.php |
— | — | @@ -1050,7 +1050,7 @@ |
1051 | 1051 | 'returntoquery' => http_build_query( $_GET ), |
1052 | 1052 | ); |
1053 | 1053 | $p = http_build_query( $p ); |
1054 | | - return "{$this->dashboardHome}?$p"; |
| 1054 | + return "{$this->dashboardHome}?$p#tab-settingsform"; |
1055 | 1055 | } |
1056 | 1056 | |
1057 | 1057 | /** |
Index: trunk/tools/ToolserverI18N/public_html/index.php |
— | — | @@ -255,10 +255,12 @@ |
256 | 256 | $domainInfo = $I18N->getDomainInfo( $domainKey ); |
257 | 257 | $title = $I18N->msg( 'title', $domainKey, /* fallback = */ $domainKey ); |
258 | 258 | if ( isset( $domainInfo['url'] ) ) { |
259 | | - $link = TsIntuitionUtil::tag( $title, 'a', array( 'href' => $domainInfo['url'] ) ); |
260 | | - $about .= "<li>$link</li>"; |
| 259 | + $item = TsIntuitionUtil::tag( "$title <{$domainInfo['url']}>", 'a', array( 'href' => $domainInfo['url'] ) ); |
| 260 | + $about .= "<li>$item</li>"; |
261 | 261 | } else { |
262 | | - $about .= TsIntuitionUtil::tag( $title, 'li' ); |
| 262 | + // Don't show tools without a url |
| 263 | + //$item = TsIntuitionUtil::tag( $title, 'em' ); |
| 264 | + //$about .= "<li>$item</li>"; |
263 | 265 | } |
264 | 266 | } |
265 | 267 | $about .= '</ul><div style="clear:both"></div></div><!-- #tab-about -->'; |