Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1313)
+++ branches/2.8.x/CHANGELOG	(revision 1314)
@@ -12,11 +12,13 @@
 
 ------------------------------------- 2.8.1 -------------------------------------
 11-Apr-2010 Dietmar Woellbrink (Luisehahne)
+!	little fixes for backwards compatible PHP4, pls test
+11-Apr-2010 Dietmar Woellbrink (Luisehahne)
 !	show_menu2 remove unneeded code for WB < 2.7
 !	class.wb.php, recoding backend preference
 +	add a language variable $MESSAGE['PREFERENCES']['INVALID_CHARS']
 !	update theme.css for preference.htt in argos_theme & wb_theme
-!	remove classic_theme
+-	remove classic_theme
 07-Apr-2010 Dietmar Woellbrink (Luisehahne)
 #	Ticket #971 Using $_POST in Admin - account - login.php (tks to Aldus)
 !	update class.wb.php added tokens function
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1313)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1314)
@@ -52,6 +52,6 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.x');
-if(!defined('REVISION')) define('REVISION', '1313');
+if(!defined('REVISION')) define('REVISION', '1314');
 
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/framework/class.wb.php
===================================================================
--- branches/2.8.x/wb/framework/class.wb.php	(revision 1313)
+++ branches/2.8.x/wb/framework/class.wb.php	(revision 1314)
@@ -27,8 +27,8 @@
 class wb
 {
 
-	public $password_chars = 'a-zA-Z0-9\_\-\!\#\*\+';
-	// General initialization function 
+	var $password_chars = 'a-zA-Z0-9\_\-\!\#\*\+';
+	// General initialization function
 	// performed when frontend or backend is loaded.
 	function wb() {
 	}
@@ -281,7 +281,7 @@
  *
  * requirements: an active session must be available
  */
-	public function getFTAN( $as_tag = true)
+	function getFTAN( $as_tag = true)
 	{
 		if(function_exists('microtime'))
 		{
@@ -319,7 +319,7 @@
  * requirements: an active session must be available
  * this check will prevent from multiple sending a form. history.back() also will never work
  */
-	public function checkFTAN( $mode = 'POST')
+	function checkFTAN( $mode = 'POST')
 	{
 		$retval = false;
 		if(isset($_SESSION['FTAN']) && strlen($_SESSION['FTAN']) == strlen(md5('dummy')))
