From 9202c1e2cc144892b27abf7a8bc14f726c229571 Mon Sep 17 00:00:00 2001 From: Matthew Mongeau Date: Thu, 21 Jun 2012 11:02:50 -0400 Subject: [PATCH] Redirect to /courses instead of /info --- lms/djangoapps/student/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/student/views.py b/lms/djangoapps/student/views.py index 8b75cd88a4..b13a57e4c4 100644 --- a/lms/djangoapps/student/views.py +++ b/lms/djangoapps/student/views.py @@ -38,7 +38,7 @@ def index(request): ''' Redirects to main page -- info page if user authenticated, or marketing if not ''' if settings.COURSEWARE_ENABLED and request.user.is_authenticated(): - return redirect('/info') + return redirect('/courses') else: csrf_token = csrf(request)['csrf_token'] # TODO: Clean up how 'error' is done.