Project

General

Profile

« Previous | Next » 

Revision 1514

Added by Dietmar over 12 years ago

account/signup.php, check if user is already logged
fix non object message in framework/functions.php

View differences:

branches/2.8.x/CHANGELOG
12 12

  
13 13
=============================== FEATURES FREEZE ================================
14 14
----------------------------------- Fixes 2.8.2 --------------------------------
15
04 Okt-2011 Build 1514 Dietmar Woellbrink (Luisehahne)
16
# account/signup.php, check if user is already logged
17
# fix non object message in framework/functions.php
15 18
04 Okt-2011 Build 1513 Dietmar Woellbrink (Luisehahne)
16 19
! outputfilter now check and add missing slash in empty href if relative urls are enabled
17 20
24 Sep-2011 Build 1512 Werner v.d.Decken(DarkViper)
branches/2.8.x/wb/admin/interface/version.php
52 52

  
53 53
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
54 54
if(!defined('VERSION')) define('VERSION', '2.8.2');
55
if(!defined('REVISION')) define('REVISION', '1513');
55
if(!defined('REVISION')) define('REVISION', '1514');
branches/2.8.x/wb/account/signup.php
1
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
require_once('../config.php');
20

  
21
if(!is_numeric(FRONTEND_SIGNUP)) {
22
	if(INTRO_PAGE) {
23
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
24
		exit(0);
25
	} else {
26
		header('Location: '.WB_URL.'/index.php');
27
		exit(0);
28
	}
29
}
30

  
31
if(ENABLED_ASP && isset($_POST['username']) && ( // form faked? Check the honeypot-fields.
32
	(!isset($_POST['submitted_when']) OR !isset($_SESSION['submitted_when'])) OR 
33
	($_POST['submitted_when'] != $_SESSION['submitted_when']) OR
34
	(!isset($_POST['email-address']) OR $_POST['email-address']) OR
35
	(!isset($_POST['name']) OR $_POST['name']) OR
36
	(!isset($_POST['full_name']) OR $_POST['full_name'])
37
)) {
38
	exit(header("Location: ".WB_URL.PAGES_DIRECTORY.""));
39
}
40

  
41
// Load the language file
42
if(!file_exists(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php')) {
43
	exit('Error loading language file '.DEFAULT_LANGUAGE.', please check configuration');
44
} else {
45
	require_once(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php');
46
	$load_language = false;
47
}
48

  
49
require_once(WB_PATH.'/framework/class.frontend.php');
50
$wb_inst = new wb();
51
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0;
52

  
53
// Required page details
54
// $page_id = 0;
55
$page_description = '';
56
$page_keywords = '';
57
define('PAGE_ID', $page_id);
58
define('ROOT_PARENT', 0);
59
define('PARENT', 0);
60
define('LEVEL', 0);
61
define('PAGE_TITLE', $TEXT['SIGNUP']);
62
define('MENU_TITLE', $TEXT['SIGNUP']);
63
define('MODULE', '');
64
define('VISIBILITY', 'public');
65

  
66
// Set the page content include file
67
if(isset($_POST['username'])) {
68
	define('PAGE_CONTENT', WB_PATH.'/account/signup2.php');
69
} else {
70
	define('PAGE_CONTENT', WB_PATH.'/account/signup_form.php');
71
}
72

  
73
// Set auto authentication to false
74
$auto_auth = false;
75

  
76
// Include the index (wrapper) file
77
require(WB_PATH.'/index.php');
1
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18

  
19
require_once('../config.php');
20

  
21
if(!( intval(FRONTEND_SIGNUP) && (  0 == (isset($_SESSION['USER_ID']) ? intval($_SESSION['USER_ID']) : 0) )))
22
{
23
	if(INTRO_PAGE) {
24
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
25
		exit(0);
26
	} else {
27
		header('Location: '.WB_URL.'/index.php');
28
		exit(0);
29
	}
30
}
31

  
32
if(ENABLED_ASP && isset($_POST['username']) && ( // form faked? Check the honeypot-fields.
33
	(!isset($_POST['submitted_when']) OR !isset($_SESSION['submitted_when'])) OR 
34
	($_POST['submitted_when'] != $_SESSION['submitted_when']) OR
35
	(!isset($_POST['email-address']) OR $_POST['email-address']) OR
36
	(!isset($_POST['name']) OR $_POST['name']) OR
37
	(!isset($_POST['full_name']) OR $_POST['full_name'])
38
)) {
39
	exit(header("Location: ".WB_URL.PAGES_DIRECTORY.""));
40
}
41

  
42
// Load the language file
43
if(!file_exists(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php')) {
44
	exit('Error loading language file '.DEFAULT_LANGUAGE.', please check configuration');
45
} else {
46
	require_once(WB_PATH.'/languages/'.DEFAULT_LANGUAGE.'.php');
47
	$load_language = false;
48
}
49

  
50
require_once(WB_PATH.'/framework/class.frontend.php');
51
$wb_inst = new wb();
52
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0;
53

  
54
// Required page details
55
// $page_id = 0;
56
$page_description = '';
57
$page_keywords = '';
58
define('PAGE_ID', $page_id);
59
define('ROOT_PARENT', 0);
60
define('PARENT', 0);
61
define('LEVEL', 0);
62
define('PAGE_TITLE', $TEXT['SIGNUP']);
63
define('MENU_TITLE', $TEXT['SIGNUP']);
64
define('MODULE', '');
65
define('VISIBILITY', 'public');
66

  
67
// Set the page content include file
68
if(isset($_POST['username'])) {
69
	define('PAGE_CONTENT', WB_PATH.'/account/signup2.php');
70
} else {
71
	define('PAGE_CONTENT', WB_PATH.'/account/signup_form.php');
72
}
73

  
74
// Set auto authentication to false
75
$auto_auth = false;
76

  
77
// Include the index (wrapper) file
78
require(WB_PATH.'/index.php');
branches/2.8.x/wb/framework/functions.php
539 539
}
540 540

  
541 541
// Function to get all sub pages id's
542
function get_subs($parent, $subs)
542
function get_subs($parent, array $subs )
543 543
{
544 544
	// Connect to the database
545 545
	global $database;
546 546
	// Get id's
547 547
	$sql = 'SELECT `page_id` FROM `'.TABLE_PREFIX.'pages` WHERE `parent` = '.$parent;
548
	$query = $database->query($sql);
549
	if($query->numRows() > 0)
550
	{
548
	if( ($query = $database->query($sql)) ) {
551 549
		while($fetch = $query->fetchRow()) {
552 550
			$subs[] = $fetch['page_id'];
553
			// Get subs of this sub
551
			// Get subs of this sub recursive
554 552
			$subs = get_subs($fetch['page_id'], $subs);
555 553
		}
556 554
	}

Also available in: Unified diff