url() should not contain quotes.
This commit is contained in:
@@ -7,6 +7,7 @@ $Source$
|
|||||||
|
|
||||||
2003-07-06 Michal Cihar <nijel@users.sourceforge.net>
|
2003-07-06 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* lang/czech: Updated.
|
* lang/czech: Updated.
|
||||||
|
* css/phpmyadmin.css.php3: url() should not contain quotes.
|
||||||
|
|
||||||
2003-07-06 Alexander M. Turek <rabus@users.sourceforge.net>
|
2003-07-06 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* lang/german-*.inc.php3: Updates.
|
* lang/german-*.inc.php3: Updates.
|
||||||
|
@@ -125,10 +125,10 @@ body {
|
|||||||
<?php
|
<?php
|
||||||
if ($GLOBALS['cfg']['RightBgImage'] == '') {
|
if ($GLOBALS['cfg']['RightBgImage'] == '') {
|
||||||
// calls from a css file are relative to itself, so use ../images
|
// 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";
|
. ' background-repeat: repeat-y;' . "\n";
|
||||||
} else {
|
} else {
|
||||||
echo ' background-image: url(\'' . $GLOBALS['cfg']['RightBgImage'] . '\');' . "\n";
|
echo ' background-image: url(' . $GLOBALS['cfg']['RightBgImage'] . ');' . "\n";
|
||||||
} // end if... else...
|
} // end if... else...
|
||||||
?>
|
?>
|
||||||
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
||||||
|
Reference in New Issue
Block a user