diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2011-04-18 15:12:42 -0400 |
---|---|---|
committer | Paul Arthur <flowerysong00@yahoo.com> | 2011-04-18 15:12:42 -0400 |
commit | 04d77b1a7c56be433833421eb4972355265e9fd6 (patch) | |
tree | d648cdf957de1b37ef5f00ab2af471f5d111a6bc /templates/show_clean_catalog.inc.php | |
parent | 36bc6d51071ed7d3c28106a9c982dae5e0679557 (diff) | |
download | ampache-04d77b1a7c56be433833421eb4972355265e9fd6.tar.gz ampache-04d77b1a7c56be433833421eb4972355265e9fd6.tar.bz2 ampache-04d77b1a7c56be433833421eb4972355265e9fd6.zip |
Fix display not updating during catalog updates.
Consistently use $this instead of $catalog or (no longer set) local
variables that duplicated class variables in the templates, minor
quoting cosmetics.
Diffstat (limited to 'templates/show_clean_catalog.inc.php')
-rw-r--r-- | templates/show_clean_catalog.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_clean_catalog.inc.php b/templates/show_clean_catalog.inc.php index 1d7acfd6..23eab269 100644 --- a/templates/show_clean_catalog.inc.php +++ b/templates/show_clean_catalog.inc.php @@ -28,9 +28,9 @@ show_box_top(); /* HINT: Catalog Name */ -printf(_('Cleaning the %s Catalog'), "<strong>[" . $this->name . "]</strong>"); +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 />"; +echo _('Checking') . ': <span id="clean_count_' . $this->id . '"></span><br />'; +echo _('Reading') . ':<span id="clean_dir_' . $this->id . '"></span><br />'; show_box_bottom(); ?> |