diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-03 22:23:57 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-03 22:23:57 +0000 |
commit | 7e7827bde92aebc015e5eb2bfd854416eaf446ed (patch) | |
tree | 9392dda8cbe9713f4018033992ee7833f8593aee /templates | |
parent | e9133f9825735a072bb3ce54daac1d85edb3a806 (diff) | |
download | ampache-7e7827bde92aebc015e5eb2bfd854416eaf446ed.tar.gz ampache-7e7827bde92aebc015e5eb2bfd854416eaf446ed.tar.bz2 ampache-7e7827bde92aebc015e5eb2bfd854416eaf446ed.zip |
fixed lack of scrubing on catalog names
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_admin_tools.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_admin_tools.inc.php b/templates/show_admin_tools.inc.php index 0dc3331d..e2734f7f 100644 --- a/templates/show_admin_tools.inc.php +++ b/templates/show_admin_tools.inc.php @@ -35,8 +35,8 @@ $users = $GLOBALS['user']->get_recent(10); <tr class="<?php echo flip_class(); ?>"> <td> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=show_customize_catalog&catalog_id=<?php echo $catalog->id; ?>"> - <?php echo $catalog->name; ?></a> - (<?php echo $catalog->path; ?>) + <?php echo scrub_out($catalog->name); ?></a> + (<?php echo scrub_out($catalog->path); ?>) </td> <td> <a href="<?php echo $web_path; ?>/admin/catalog.php?action=add_to_catalog&catalogs[]=<?php echo $catalog->id; ?>"> |