diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-16 19:55:25 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-16 19:55:25 +0000 |
commit | be194f4f72443307998816293985831926460cce (patch) | |
tree | 8d38d88fa34b06423dcada2c7fd33b4c5d871548 /tv.php | |
parent | 9e915e256086a06ab5ec996d3a153f92c8ae4848 (diff) | |
download | ampache-be194f4f72443307998816293985831926460cce.tar.gz ampache-be194f4f72443307998816293985831926460cce.tar.bz2 ampache-be194f4f72443307998816293985831926460cce.zip |
fixed stupid typo causing show all to fail on genre
Diffstat (limited to 'tv.php')
-rw-r--r-- | tv.php | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -25,4 +25,27 @@ require_once('lib/init.php'); $dbh = dbh(); $web_path = conf('web_path'); +$htmllang = str_replace("_","-",conf('lang')); +$location = get_location(); ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>"> + +<head> +<link rel="shortcut icon" href="<?php echo $web_path; ?>/favicon.ico" /> +<meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> +<title><?php echo conf('site_title'); ?> - <?php echo $location['title']; ?></title> +<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css" /> +<link rel="stylesheet" href="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/templates/default.css" type="text/css" /> +</head> +<body> +<script src="<?php echo $web_path; ?>/lib/general.js" language="javascript" type="text/javascript"></script> +<script src="<?php echo $web_path; ?>/modules/kajax/ajax.js" language="javascript" type="text/javascript"></script> +<!-- Control DIV --> +<div id="tv_control"> + +</div> +<!-- End Control Div --> +<div id="tv_np"> +<div id="tv_playlist"> +</div> |