Rearrange alphanav to better fit 3CL

This commit is contained in:
Zach Copley
2011-03-07 14:32:14 -08:00
parent 4b24f09ab4
commit b431a3b216
3 changed files with 14 additions and 5 deletions

View File

@@ -75,11 +75,11 @@ class AlphaNav extends Widget
$this->filters = array_merge($this->filters, range(0, 9));
}
$this->filters = array_merge($this->filters, range('A', 'Z'));
if ($append) {
$this->filters = array_merge($this->filters, $append);
}
$this->filters = array_merge($this->filters, range('A', 'Z'));
}
/**