diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 20:14:52 +0000 |
commit | 1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc (patch) | |
tree | 54655ff3e692a71a17f1d37cd97374b263557ca1 /templates/show_export.inc.php | |
parent | ef48bf3fbdca2a4d25f5d025f4c6ad23905e5369 (diff) | |
download | ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.gz ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.tar.bz2 ampache-1cb0983ed04c65e06d502ae2ac9ed6d5e31d70dc.zip |
Cosmetics: remove trailing whitespace
Diffstat (limited to 'templates/show_export.inc.php')
-rw-r--r-- | templates/show_export.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/show_export.inc.php b/templates/show_export.inc.php index 74f753aa..3ad6fb8a 100644 --- a/templates/show_export.inc.php +++ b/templates/show_export.inc.php @@ -8,7 +8,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 - of the License. + of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,10 +21,10 @@ */ -$name = 'export_' . $_REQUEST['export_format']; +$name = 'export_' . $_REQUEST['export_format']; +${$name} = ' selected="selected"'; +$name = 'catalog_' . $_REQUEST['export_catalog']; ${$name} = ' selected="selected"'; -$name = 'catalog_' . $_REQUEST['export_catalog']; -${$name} = ' selected="selected"'; show_box_top(_('Export Catalog')); ?> <form name="duplicates" action="<?php echo Config::get('web_path'); ?>/admin/export.php?action=export" method="post" enctype="multipart/form-data" > @@ -35,11 +35,11 @@ show_box_top(_('Export Catalog')); ?> <select id="export_catalog" name="export_catalog"> <option value=""><?php echo _('All'); ?></option> <?php - $catalog_ids = Catalog::get_catalogs(); + $catalog_ids = Catalog::get_catalogs(); foreach ($catalog_ids as $catalog_id) { $catalog = new Catalog($catalog_id); - $current_name = 'catalog_' . $catalog->id; - + $current_name = 'catalog_' . $catalog->id; + ?> <option value="<?php echo $catalog->id; ?>"<?php echo ${$current_name}; ?>><?php echo scrub_out($catalog->name); ?></option> <?php |