Skip to content

Commit

Permalink
Bug: 13238 Fix sorting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 2, 2014
1 parent e29f6a4 commit 3731401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansel/templates/view/list.html.php
Expand Up @@ -27,7 +27,7 @@
<?php if ($this->sortDir): ?>
<?php echo $this->contentTag('a', Horde::img('za.png', _("Ascending")), array('href' => $this->refresh_link->copy()->add(array('sort' => $this->sortBy, 'sort_dir' => 0)))) ?>
<?php else: ?>
<?php echo $this->contentTag('a', Horde::img('az.png', _("Descending")), array('href' => $this->refresh_link->copy()->add(array('sort' => $this->_sortBy, 'sort_dir' => 1)))) ?>
<?php echo $this->contentTag('a', Horde::img('az.png', _("Descending")), array('href' => $this->refresh_link->copy()->add(array('sort' => $this->sortBy, 'sort_dir' => 1)))) ?>
<?php endif; ?>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 3731401

Please sign in to comment.