User/Guides

* fixed copy/paste fail
This commit is contained in:
Sarjuuk
2022-04-26 13:39:07 +02:00
parent df1ba841c5
commit 2b15c13e88

View File

@@ -641,8 +641,11 @@ var PageTemplate = new function()
{
var submenu = [];
if (!g_user.guides || !g_user.guides.length)
return;
// Sort by name
g_user.profiles.sort(function(a, b)
g_user.guides.sort(function(a, b)
{
return $WH.strcmp(a.title, b.title);
});