summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authordipsol <martin@diphoorn.com>2011-09-14 16:20:48 +0200
committerdipsol <martin@diphoorn.com>2011-09-14 16:20:48 +0200
commitfcc8ff2842b9cc5a6d70cc5d4c464ab962623863 (patch)
tree0436094bbbb3b07b0bd4de1898672ca5ccf3c241 /templates
parent41c1e8b7108ff15070b68485df75134dc3003d8f (diff)
downloadampache-fcc8ff2842b9cc5a6d70cc5d4c464ab962623863.tar.gz
ampache-fcc8ff2842b9cc5a6d70cc5d4c464ab962623863.tar.bz2
ampache-fcc8ff2842b9cc5a6d70cc5d4c464ab962623863.zip
FS#189 Fixed dropdown selection
Diffstat (limited to 'templates')
-rw-r--r--templates/browse_filters.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/browse_filters.inc.php b/templates/browse_filters.inc.php
index d3aec2b6..7fe310d0 100644
--- a/templates/browse_filters.inc.php
+++ b/templates/browse_filters.inc.php
@@ -82,11 +82,11 @@ $ajax_info = Config::get('ajax_url'); $web_path = Config::get('web_path');
}
foreach( $results as $entries ) {
- echo '<option value="' . $entries['id'];
+ echo '<option value="' . $entries['id'] . '" ';
if( $_SESSION['catalog'] == $entries['id'] ) {
echo ' selected="selected" ';
}
- echo '">' . $entries['name'] . '</options>';
+ echo '>' . $entries['name'] . '</options>';
}
?>