sort languages #1303

This commit is contained in:
Andy Miller
2018-01-04 12:27:02 -07:00
parent c697fa1936
commit 1cf8fc4ae4
2 changed files with 5 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
# v1.7.0-rc.1 # v1.7.0-rc.1
## mm/dd/2017 ## mm/dd/2017
1. [](#improved)
* Sort languages by key [#1303](https://github.com/getgrav/grav-plugin-admin/issues/1303)
1. [](#bugfix) 1. [](#bugfix)
* Fixed a z-index issue with fullscreen editor [#1302](https://github.com/getgrav/grav-plugin-admin/issues/1302) * Fixed a z-index issue with fullscreen editor [#1302](https://github.com/getgrav/grav-plugin-admin/issues/1302)

View File

@@ -178,6 +178,9 @@ class Admin
} }
// sort languages
asort($languages);
return $languages; return $languages;
} }