diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/browse_filters.inc.php | 4 |
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>'; } ?> |