From 3217a98669c4e65c12c72f6a5a301ecd49834c53 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 8 Nov 2010 16:19:08 +0000 Subject: [PATCH] Followup r76088: rewrite relative CSS urls --- includes/installer/WebInstallerOutput.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/installer/WebInstallerOutput.php b/includes/installer/WebInstallerOutput.php index ce0927f899..a05736f44d 100644 --- a/includes/installer/WebInstallerOutput.php +++ b/includes/installer/WebInstallerOutput.php @@ -93,10 +93,9 @@ class WebInstallerOutput { if( !$css ) { return "/** Your webserver cannot read $vectorCssFile, please check file permissions */"; } elseif( $dir == 'rtl' ) { - return CSSJanus::transform( $css, true ); - } else { - return $css; + $css = CSSJanus::transform( $css, true ); } + return str_replace( 'images/', '../skins/vector/images/', $css ); } /** -- 2.20.1