Empty commit

This commit is contained in:
Git 2011-11-29 08:00:19 +00:00
parent 0bf0ceeac1
commit 0ec5ddef59
4 changed files with 4 additions and 2 deletions

View File

@ -10,6 +10,7 @@
<meta http-equiv="X-UA-Compatible" content="chrome=1;IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="search" type="application/opensearchdescription+xml" title="<?=SITE_NAME?> Artists" href="opensearch.php?type=artists" />
<link rel="search" type="application/opensearchdescription+xml" title="<?=SITE_NAME?> Torrents" href="opensearch.php?type=torrents" />
<link rel="search" type="application/opensearchdescription+xml" title="<?=SITE_NAME?> Requests" href="opensearch.php?type=requests" />

View File

@ -10,6 +10,7 @@
<meta http-equiv="X-UA-Compatible" content="chrome=1;IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<? if ($Mobile) { ?>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0, user-scalable=no;"/>
<link href="<?=STATIC_SERVER ?>styles/mobile/style.css?v=<?=filemtime(SERVER_ROOT.'/static/mobile/style.css')?>" rel="stylesheet" type="text/css" />

View File

@ -40,7 +40,7 @@
</div>
<div class="box pad" align="center">
<? if (count($ArtistList) == 0) { ?>
<h2>You have not bookmarked any artists.</h2>
<br /><h2>You have not bookmarked any artists.</h2>
</div>
</div><!--content-->
<?

View File

@ -181,7 +181,7 @@
}
// Let's try to shorten the filename intelligently before chopping it off
if (strlen($TorrentName) + strlen($TorrentInfo) + 3 > 152) {
if (strlen($TorrentName) + strlen($TorrentInfo) + 3 > 200) {
$TorrentName = $Name . (($Year>0)?(' - '.$Year):'');
}