Index: trunk/phase3/includes/installer/WebInstallerOutput.php |
— | — | @@ -113,11 +113,11 @@ |
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
117 | | - * URL for index.php?css=foobar |
| 117 | + * <link> to index.php?css=foobar for the <head> |
118 | 118 | * @return String |
119 | 119 | */ |
120 | 120 | private function getCssUrl( ) { |
121 | | - return $_SERVER['PHP_SELF'] . '?css=' . $this->getDir(); |
| 121 | + return Html::linkedStyle( $_SERVER['PHP_SELF'] . '?css=' . $this->getDir() ); |
122 | 122 | } |
123 | 123 | |
124 | 124 | public function useShortHeader( $use = true ) { |
— | — | @@ -206,7 +206,7 @@ |
207 | 207 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
208 | 208 | <title><?php $this->outputTitle(); ?></title> |
209 | 209 | <?php echo Html::linkedStyle( '../skins/common/shared.css' ) . "\n"; ?> |
210 | | - <?php echo Html::linkedStyle( $this->getCssUrl() ) . "\n"; ?> |
| 210 | + <?php echo $this->getCssUrl() . "\n"; ?> |
211 | 211 | <?php echo Html::inlineScript( "var dbTypes = " . Xml::encodeJsVar( $dbTypes ) ) . "\n"; ?> |
212 | 212 | <?php echo $this->getJQuery() . "\n"; ?> |
213 | 213 | <?php echo Html::linkedScript( '../skins/common/config.js' ) . "\n"; ?> |
— | — | @@ -260,7 +260,7 @@ |
261 | 261 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
262 | 262 | <meta name="robots" content="noindex, nofollow" /> |
263 | 263 | <title><?php $this->outputTitle(); ?></title> |
264 | | - <?php echo Html::linkedStyle( $this->getCssUrl() ) . "\n"; ?> |
| 264 | + <?php echo $this->getCssUrl() . "\n"; ?> |
265 | 265 | <?php echo $this->getJQuery(); ?> |
266 | 266 | <?php echo Html::linkedScript( '../skins/common/config.js' ); ?> |
267 | 267 | </head> |