url() should not contain quotes.

This commit is contained in:
Michal Čihař
2003-07-06 19:05:07 +00:00
parent 3013cfbcbf
commit 8c41f24565
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2003-07-06 Michal Cihar <nijel@users.sourceforge.net>
* lang/czech: Updated.
* css/phpmyadmin.css.php3: url() should not contain quotes.
2003-07-06 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/german-*.inc.php3: Updates.

View File

@@ -125,10 +125,10 @@ body {
<?php
if ($GLOBALS['cfg']['RightBgImage'] == '') {
// calls from a css file are relative to itself, so use ../images
echo ' background-image: url(\'../images/vertical_line.png\');' . "\n"
echo ' background-image: url(../images/vertical_line.png);' . "\n"
. ' background-repeat: repeat-y;' . "\n";
} else {
echo ' background-image: url(\'' . $GLOBALS['cfg']['RightBgImage'] . '\');' . "\n";
echo ' background-image: url(' . $GLOBALS['cfg']['RightBgImage'] . ');' . "\n";
} // end if... else...
?>
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>