Skip to content

Commit 226f0a7

Browse files
committed
Couple small updated to sorting and return url
1 parent 044f3dc commit 226f0a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

BlogEngine/BlogEngine.NET/Custom/Themes/Standard/site.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
else
1616
{
1717
aLoginText.InnerText = Resources.labels.login;
18-
aLogin.HRef = Utils.RelativeWebRoot + "Account/login.aspx?ReturnURL=/admin/";
18+
aLogin.HRef = Utils.RelativeWebRoot + "Account/login.aspx?ReturnURL=" + Utils.RelativeWebRoot + "admin/";
1919
}
2020
%>
2121
<!DOCTYPE html>

BlogEngine/BlogEngine.NET/admin/app/content/pages/pageController.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
$scope.items = [];
33
$scope.fltr = 'pages';
44
$scope.filter = ($location.search()).fltr;
5+
$scope.sortingOrder = 'SortOrder';
56

67
$scope.load = function () {
78
var url = '/api/pages';

0 commit comments

Comments
 (0)