|
|
mantisbt index.php, 1.15, 1.15.18.1 login_page.php, 1.52.4.1, 1.52.4.1.6.1: msg#00008
|
Subject: |
mantisbt index.php, 1.15, 1.15.18.1 login_page.php, 1.52.4.1, 1.52.4.1.6.1 |
Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20382
Modified Files:
Tag: BRANCH_1_0_0
index.php login_page.php
Log Message:
Fixed #7299: Port: Save login feature does not work.
Index: index.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/index.php,v
retrieving revision 1.15
retrieving revision 1.15.18.1
diff -u -d -r1.15 -r1.15.18.1
--- index.php 12 Feb 2005 20:01:05 -0000 1.15
+++ index.php 22 Jul 2006 20:03:00 -0000 1.15.18.1
@@ -12,7 +12,7 @@
<?php require_once( 'core.php' ) ?>
<?php
if ( auth_is_user_authenticated() ) {
- print_header_redirect( 'main_page.php' );
+ print_header_redirect( config_get( 'default_home_page' ) );
} else {
print_header_redirect( 'login_page.php' );
}
Index: login_page.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/login_page.php,v
retrieving revision 1.52.4.1
retrieving revision 1.52.4.1.6.1
diff -u -d -r1.52.4.1 -r1.52.4.1.6.1
--- login_page.php 8 Dec 2005 22:28:16 -0000 1.52.4.1
+++ login_page.php 22 Jul 2006 20:03:00 -0000 1.52.4.1.6.1
@@ -14,6 +14,10 @@
require_once( 'core.php' );
+ if ( auth_is_user_authenticated() ) {
+ print_header_redirect( config_get( 'default_home_page' ) );
+ }
+
$f_error = gpc_get_bool( 'error' );
$f_cookie_error = gpc_get_bool( 'cookie_error' );
$f_return = gpc_get_string( 'return', '' );
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|
| |