diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-19 04:31:52 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-19 04:31:52 +0000 |
commit | a6a8c08e3721962fd2dc5cfdc6efc1803e844a2b (patch) | |
tree | 0a2b14b3029bb3e5bef45af452d10127c0337127 /templates/show_clean_catalog.inc.php | |
parent | 619368f183a2c652f8ac40a83d847c608187e53d (diff) | |
download | ampache-a6a8c08e3721962fd2dc5cfdc6efc1803e844a2b.tar.gz ampache-a6a8c08e3721962fd2dc5cfdc6efc1803e844a2b.tar.bz2 ampache-a6a8c08e3721962fd2dc5cfdc6efc1803e844a2b.zip |
fixed the search a bit, made some random changes to charset and fixed some echo printf() references
Diffstat (limited to 'templates/show_clean_catalog.inc.php')
-rw-r--r-- | templates/show_clean_catalog.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/show_clean_catalog.inc.php b/templates/show_clean_catalog.inc.php index f8f1b3c3..9df88355 100644 --- a/templates/show_clean_catalog.inc.php +++ b/templates/show_clean_catalog.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -21,7 +21,8 @@ show_box_top(); //echo "\n" . _('Cleaning the') . " <b>[" . $this->name . "]</b> " . _('Catalog') . "...<br />\n"; -echo "\n" . printf(_('Cleaning the %s Catalog'), " <b>[" . $this->name . "]</b> ") . "...<br />\n"; +printf(_('Cleaning the %s Catalog'), "<strong>[" . $this->name . "]</strong>"); +echo "...<br />"; echo _('Checking') . ": <span id=\"clean_count_" . $this->id . "\"></span>\n<br />"; echo _('Reading') . ":<span id=\"clean_dir_" . $this->id . "\"></span><br />"; show_box_bottom(); |