Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit d525741

Browse files
committed
BUG: refs #0445. Alphabet goes all the way to Z
1 parent 31e41bb commit d525741

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/views/user/index.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ $this->headScript()->appendFile($this->coreWebroot.'/public/js/user/user.index.j
3333
if($this->order == 'lastname')
3434
{
3535
echo "<a href='{$this->webroot}/user?order=lastname'>{$this->t('All')}</a> ";
36-
for ($i=ord("A");$i<ord("Z");$i++)
36+
for ($i = ord('A'); $i <= ord('Z'); $i++)
3737
{
3838
if($this->offset === chr($i))
3939
{
40-
echo chr($i)." ";
40+
echo chr($i).' ';
4141
}
4242
else
4343
{

0 commit comments

Comments
 (0)