blob: 3db74d80b03f5d81dbbfa5b2cf34689365242c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
// :vim:tabstop=4:
// +--------------------------------------------------------------------+
// | Copyright (c) 2005-2010 bitcommerce.org |
// | http://www.bitcommerce.org |
// | This source file is subject to version 2.0 of the GPL license |
// +--------------------------------------------------------------------+
// | Portions Copyright (c) 2003 The zen-cart developers |
// | Portions Copyright (c) 2003 osCommerce |
// +--------------------------------------------------------------------+
//
require_once( '../../kernel/includes/setup_inc.php' );
if( !empty( $_REQUEST['returnto'] ) ) {
$_SESSION['returnto'] = $_REQUEST['returnto'];
} elseif( !empty( $_SERVER['HTTP_REFERER'] ) && !strpos( $_SERVER['HTTP_REFERER'], 'signin.php' ) && !strpos( $_SERVER['HTTP_REFERER'], 'register.php' ) ) {
$from = parse_url( $_SERVER['HTTP_REFERER'] );
if( !empty( $from['path'] ) && $from['host'] == $_SERVER['SERVER_NAME'] ) {
$_SESSION['loginfrom'] = $from['path'].'?'.( !empty( $from['query'] ) ? $from['query'] : '' );
}
}
|