Skip to content

Commit

Permalink
Fix in digital object browser, refs #8407
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed May 7, 2015
1 parent ca39d11 commit 20fcece
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/qubit/modules/digitalobject/templates/browseSuccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
<?php if (isset($resource)): ?>
<span class="search-filter">
<?php echo render_title($resource) ?>
<a href="<?php echo url_for(array('module' => 'digitalobject', 'action' => 'browse') + $sf_request->getGetParameters()) ?>" class="remove-filter"><i class="icon-remove"></i></a>
<?php $params = $sf_data->getRaw('sf_request')->getGetParameters() ?>
<a href="<?php echo url_for(array('module' => 'digitalobject', 'action' => 'browse') + $params) ?>" class="remove-filter"><i class="icon-remove"></i></a>
</span>
<?php endif; ?>

Expand Down

0 comments on commit 20fcece

Please sign in to comment.