@@ -47,7 +47,7 @@ |
||
47 | 47 | $entries = $this->getData($page->getVariable($variable)); |
48 | 48 | |
49 | 49 | uasort($entries, function ($a, $b) use ($field) { |
50 | - return strcmp($a[$field], $b[$field]); |
|
50 | + return strcmp($a[$field], $b[$field]); |
|
51 | 51 | }); |
52 | 52 | |
53 | 53 | if (in_array($direction, self::$reverse)) { |
@@ -46,7 +46,7 @@ |
||
46 | 46 | |
47 | 47 | $entries = $this->getData($page->getVariable($variable)); |
48 | 48 | |
49 | - uasort($entries, function ($a, $b) use ($field) { |
|
49 | + uasort($entries, function($a, $b) use ($field) { |
|
50 | 50 | return strcmp($a[$field], $b[$field]); |
51 | 51 | }); |
52 | 52 |