Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 387)
+++ trunk/CHANGELOG	(revision 388)
@@ -11,14 +11,21 @@
 ! = Update/Change
 
 ------------------------------------- 2.6.5 -------------------------------------
+20-Dez-2006 Matthias Gallas
+!	Set Version to 2.6.5
+-	Removed Changeset 365 because this will be a part of WB 2.7.x
+#	Fixed a little typo error in class.admin.php (#364)
+26-Nov-2006 Ryan Djurovich
++	Added new script that could possibly be apart of 2.7.x as a replacement
+	for having the pages directory 
 17-Nov-2006 Matthias Gallas
 #	Fixed fatal error in line 46 news/comment.php (thanks to eki)(#358)
 15-Nov-2006 Matthias Gallas
 #	Fixed again intropage doesn't work (#71)
 20-Oct-2006 Matthias Gallas
-!	Added phpmailer class (thanks to doc)
-!	Added Remember-expanded-pages-in-admin (thanks to ephraimt)
-!	Added List sorting in admin area (thanks to rsmith)
++	Added phpmailer class (thanks to doc)
++	Added Remember-expanded-pages-in-admin (thanks to ephraimt)
++	Added List sorting in admin area (thanks to rsmith)
 #	Fixed table width 100% are wrong displayed in container templates
 	when IE is used (#350)
 #	Fixed large space between menupoints in IE (#349)
@@ -31,18 +38,18 @@
 #	Fixed news modul stores empty records (#338)
 #	Fixed Captcha didn't work in news comments (#337)
 #	Fixed various php notices (#334)
-!	Added new upgrade_function (thanks to kozmoz)
++	Added new upgrade_function (thanks to kozmoz)
 #	Fixed addons table isn't updated when a modul is updated (#332)
 #	Fixed spelling errors in the signup2.php (#330)
 #	Fixed MySQL 5.x missing default values for INT fields in all system
 	and modules tables (#329)
 #	Fixed installer does not insert admin user (#328)
-!	Added support for getting page ID of page that referred search
++	Added support for getting page ID of page that referred search
 	request (#327) (thanks to brofield)
 #	Fixed search results generate invalid XHTML and notify warnings (#326)
 Stefan Braunewell
 #	Fixed Field 'last_reset' doesn't have a default value (#313)
-!	Added get_post_escaped to wb class which automatically calls add_slashes
++	Added get_post_escaped to wb class which automatically calls add_slashes
 	on get_post output and used it in form/save_field.php
 ------------------------------------- 2.6.4 -------------------------------------
 20-May-2006 Ryan Djurovich
Index: trunk/wb/.htaccess
===================================================================
--- trunk/wb/.htaccess	(revision 387)
+++ trunk/wb/.htaccess	(nonexistent)
@@ -1,2 +0,0 @@
-RewriteEngine on
-RewriteRule ^(.*).html$ htpage.php?page=$1
\ No newline at end of file

Property changes on: trunk/wb/.htaccess
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/wb/htpage.php
===================================================================
--- trunk/wb/htpage.php	(revision 387)
+++ trunk/wb/htpage.php	(nonexistent)
@@ -1,27 +0,0 @@
-<?php
-
-// Include config file
-require_once('config.php');
-
-// Check if specific page requested
-if(isset($_GET['page'])) {
-	// Page link
-	$page_link = addslashes($_GET['page']);
-	// Query database
-	$sql = "SELECT * FROM pages WHERE link = '/".$page_link."'";
-	$query = $database->query($sql);
-	// Check for errors
-	if($database->is_error()) {
-		// Print error
-		die($database->get_error());
-	} elseif($query->numRows() > 0) {
-		// Get page id
-		$page = $query->fetchRow();
-		$page_id = $page['page_id'];
-		unset($page);
-		// Include main script
-		require_once('index.php');
-	}
-}
-
-?>
\ No newline at end of file

Property changes on: trunk/wb/htpage.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/wb/admin/interface/version.php
===================================================================
--- trunk/wb/admin/interface/version.php	(revision 387)
+++ trunk/wb/admin/interface/version.php	(revision 388)
@@ -36,6 +36,6 @@
 	exit(0);
 }
 
-define('VERSION', '2.6.4');
+define('VERSION', '2.6.5');
 
 ?>
\ No newline at end of file
