diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-18 08:47:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-18 08:47:08 +0000 |
commit | 4632a09466e986b311136fd0150bd4004b003c16 (patch) | |
tree | abcf4a6bd0f8763634b3924b4e538eccdad9731c /update.php | |
parent | a8aff4f67f9cc15e93bcd46668ae8e698d778acf (diff) | |
download | ampache-4632a09466e986b311136fd0150bd4004b003c16.tar.gz ampache-4632a09466e986b311136fd0150bd4004b003c16.tar.bz2 ampache-4632a09466e986b311136fd0150bd4004b003c16.zip |
new install theme and fixed jpeg resize issues
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -66,21 +66,31 @@ $htmllang = str_replace("_","-",conf('lang')); <head> <link rel="shortcut icon" href="<?php echo conf('web_path'); ?>/favicon.ico" /> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> -<?php show_template('style'); ?> +<?php require_once(conf('prefix') . "/templates/install.css"); ?> <title>Ampache - Update</title> </head> <body> - -<p class="header1">Ampache - Update</p> -<p> +<div id="header"> +<h1><?php echo _("Ampache Update"); ?></h1> +<p>For the love of Music</p> +</div> +<div id="text-box"> + <div class="notify"> This page handles all database updates to Ampache starting with 3.2. According to your database your current version is: <?php echo $update->format_version($version); ; ?>. the following updates need to be performed<br /><br /> -</p> + </div> + <div class="content"> <?php $update->display_update(); ?> <form method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ; ?>/update.php?action=update"> <?php if ($update->need_update()) { ?><input type="submit" value="Update Now!" /> <?php } ?> </form> + </div> + <div id="bottom"> + <p><b>Ampache Installation.</b><br /> + For the love of Music.</p> + </div> +</div> </body> </html> |