Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2131)
+++ branches/2.8.x/CHANGELOG	(revision 2132)
@@ -10,6 +10,8 @@
 # = Bugfix
 ! = Update/Change
 ===============================================================================
+01 Sep -2015 Build 2132 Manuela v.d.Decken(DarkViper)
+! class WbDatabase: all deprecated methods now will trigger a E_USER_DEPRECATED error.
 23 Jun -2015 Build 2131 Manuela v.d.Decken(DarkViper)
 # msgQueue fixed index error
 ! WbDatabase added compatibility layer to ::fetchAll() to prevent from incomplete compiled PHP
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2131)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2132)
@@ -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.4');
-if(!defined('REVISION')) define('REVISION', '2131');
+if(!defined('REVISION')) define('REVISION', '2132');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbDatabase.php
===================================================================
--- branches/2.8.x/wb/framework/WbDatabase.php	(revision 2131)
+++ branches/2.8.x/wb/framework/WbDatabase.php	(revision 2132)
@@ -479,7 +479,7 @@
     {
         $iType = $iType != MYSQLI_NUM ? MYSQLI_ASSOC : MYSQLI_NUM;
 
-        if (function_exists('mysqli_fetch_array')) { # Compatibility layer with PHP < 5.3
+        if (function_exists('mysqli_fetch_all')) { # Compatibility layer with PHP < 5.3
             $aRetval = mysqli_fetch_all($this->result, $iType);
         } else {
             for ($aRetval = array(); ($aTmp = mysqli_fetch_array($this->result, $iType));) { $aRetval[] = $aTmp; }
