diff options
Diffstat (limited to 'templates/show_verify_catalog.inc.php')
-rw-r--r-- | templates/show_verify_catalog.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_verify_catalog.inc.php b/templates/show_verify_catalog.inc.php index 8c4fba4f..2b09adde 100644 --- a/templates/show_verify_catalog.inc.php +++ b/templates/show_verify_catalog.inc.php @@ -28,11 +28,11 @@ show_box_top(); /* HINT: Catalog Name */ -printf(_('Updating the %s catalog'), "<strong>[ $catalog->name ]</strong>"); +printf(_('Updating the %s catalog'), "<strong>[ $this->name ]</strong>"); echo "<br />\n"; printf(ngettext('%d item found checking tag information', '%d items found checking tag information', $number), $number); echo "<br />\n\n"; -echo _('Verifed') . ":<span id=\"verify_count_$catalog_id\">$catalog_verify_found</span><br />"; -echo _('Reading') . ":<span id=\"verify_dir_$catalog_id\">$catalog_verify_directory</span><br />"; +echo _('Verified') . ':<span id="verify_count_' . $this->id . '">' . $catalog_verify_found . '</span><br />'; +echo _('Reading') . ':<span id="verify_dir_' . $this->id . '">' . $catalog_verify_directory . '</span><br />'; show_box_bottom(); ?> |