Project

General

Profile

« Previous | Next » 

Revision 388

Added by Matthias over 17 years ago

Removed changeset 365 because it is for WB 2.7.x
Changed version to 2.6.5
Completed CHANGELOG

View differences:

trunk/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.6.5 -------------------------------------
14
20-Dez-2006 Matthias Gallas
15
!	Set Version to 2.6.5
16
-	Removed Changeset 365 because this will be a part of WB 2.7.x
17
#	Fixed a little typo error in class.admin.php (#364)
18
26-Nov-2006 Ryan Djurovich
19
+	Added new script that could possibly be apart of 2.7.x as a replacement
20
	for having the pages directory 
14 21
17-Nov-2006 Matthias Gallas
15 22
#	Fixed fatal error in line 46 news/comment.php (thanks to eki)(#358)
16 23
15-Nov-2006 Matthias Gallas
17 24
#	Fixed again intropage doesn't work (#71)
18 25
20-Oct-2006 Matthias Gallas
19
!	Added phpmailer class (thanks to doc)
20
!	Added Remember-expanded-pages-in-admin (thanks to ephraimt)
21
!	Added List sorting in admin area (thanks to rsmith)
26
+	Added phpmailer class (thanks to doc)
27
+	Added Remember-expanded-pages-in-admin (thanks to ephraimt)
28
+	Added List sorting in admin area (thanks to rsmith)
22 29
#	Fixed table width 100% are wrong displayed in container templates
23 30
	when IE is used (#350)
24 31
#	Fixed large space between menupoints in IE (#349)
......
31 38
#	Fixed news modul stores empty records (#338)
32 39
#	Fixed Captcha didn't work in news comments (#337)
33 40
#	Fixed various php notices (#334)
34
!	Added new upgrade_function (thanks to kozmoz)
41
+	Added new upgrade_function (thanks to kozmoz)
35 42
#	Fixed addons table isn't updated when a modul is updated (#332)
36 43
#	Fixed spelling errors in the signup2.php (#330)
37 44
#	Fixed MySQL 5.x missing default values for INT fields in all system
38 45
	and modules tables (#329)
39 46
#	Fixed installer does not insert admin user (#328)
40
!	Added support for getting page ID of page that referred search
47
+	Added support for getting page ID of page that referred search
41 48
	request (#327) (thanks to brofield)
42 49
#	Fixed search results generate invalid XHTML and notify warnings (#326)
43 50
Stefan Braunewell
44 51
#	Fixed Field 'last_reset' doesn't have a default value (#313)
45
!	Added get_post_escaped to wb class which automatically calls add_slashes
52
+	Added get_post_escaped to wb class which automatically calls add_slashes
46 53
	on get_post output and used it in form/save_field.php
47 54
------------------------------------- 2.6.4 -------------------------------------
48 55
20-May-2006 Ryan Djurovich
trunk/wb/.htaccess
1
RewriteEngine on
2
RewriteRule ^(.*).html$ htpage.php?page=$1
3 0

  
trunk/wb/htpage.php
1
<?php
2

  
3
// Include config file
4
require_once('config.php');
5

  
6
// Check if specific page requested
7
if(isset($_GET['page'])) {
8
	// Page link
9
	$page_link = addslashes($_GET['page']);
10
	// Query database
11
	$sql = "SELECT * FROM pages WHERE link = '/".$page_link."'";
12
	$query = $database->query($sql);
13
	// Check for errors
14
	if($database->is_error()) {
15
		// Print error
16
		die($database->get_error());
17
	} elseif($query->numRows() > 0) {
18
		// Get page id
19
		$page = $query->fetchRow();
20
		$page_id = $page['page_id'];
21
		unset($page);
22
		// Include main script
23
		require_once('index.php');
24
	}
25
}
26

  
27
?>
28 0

  
trunk/wb/admin/interface/version.php
36 36
	exit(0);
37 37
}
38 38

  
39
define('VERSION', '2.6.4');
39
define('VERSION', '2.6.5');
40 40

  
41 41
?>

Also available in: Unified diff