Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1951)
+++ branches/2.8.x/CHANGELOG	(revision 1952)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+12 Aug-2013 Build 1952 M.v.d.Decken(DarkViper)
+# solved an autoloading problem on upgrade in /framework/Password.php
 09 Aug-2013 Build 1951 M.v.d.Decken(DarkViper)
 # solved problems with escaped strings
 09 Aug-2013 Build 1950 M.v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1951)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1952)
@@ -51,5 +51,5 @@
 
 // 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.3');
-if(!defined('REVISION')) define('REVISION', '1951');
+if(!defined('REVISION')) define('REVISION', '1952');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/Password.php
===================================================================
--- branches/2.8.x/wb/framework/Password.php	(revision 1951)
+++ branches/2.8.x/wb/framework/Password.php	(revision 1952)
@@ -31,7 +31,7 @@
  *               ISTeam changes: added SHA-256, SHA-512 (2012/10/27 Werner v.d. Decken)
  */
 
-if(!class_exists('PasswordHash')) {
+if(!class_exists('PasswordHash', false)) {
 	include(dirname(dirname(__FILE__)).'/include/phpass/PasswordHash.php');
 }
 
