diff options
author | momo-i <momo-i@ampache> | 2008-08-26 22:21:10 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-08-26 22:21:10 +0000 |
commit | de6d146ca3ee28541aad998a422b20311597e0d1 (patch) | |
tree | 405cd72e42099754a2d67a3fb79e28a4340dd951 /templates | |
parent | c3a0f470271cae98883d137c8d1ed10a9ed9d7f6 (diff) | |
download | ampache-de6d146ca3ee28541aad998a422b20311597e0d1.tar.gz ampache-de6d146ca3ee28541aad998a422b20311597e0d1.tar.bz2 ampache-de6d146ca3ee28541aad998a422b20311597e0d1.zip |
Fixed don't display xml:lang and lang for html tag.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_install_lang.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php index 2d1b8d65..4ec20405 100644 --- a/templates/show_install_lang.inc.php +++ b/templates/show_install_lang.inc.php @@ -21,7 +21,7 @@ ?> <?php if (INSTALL != '1') { exit; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="$htmllang" lang="$htmllang"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>"> <head> <title>Ampache :: Pour l'Amour de la Musique - Install</title> <link rel="stylesheet" href="templates/install.css" type="text/css" media="screen" /> |