Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2127)
+++ branches/2.8.x/CHANGELOG	(revision 2128)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+18 Jun -2015 Build 2128 Manuela v.d.Decken(DarkViper)
+# framework/WbDatabase correction in ::fetchAsscoc()
 18 Jun -2015 Build 2127 Manuela v.d.Decken(DarkViper)
 ! framework/ ~WbDatabaseHelper  ~WbDatabase some little correction to different methods
 18 Jun -2015 Build 2126 Manuela v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2127)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2128)
@@ -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', '2127');
+if(!defined('REVISION')) define('REVISION', '2128');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbDatabase.php
===================================================================
--- branches/2.8.x/wb/framework/WbDatabase.php	(revision 2127)
+++ branches/2.8.x/wb/framework/WbDatabase.php	(revision 2128)
@@ -439,12 +439,20 @@
  */
     public function fetchAssoc()
     {
-        if ($typ != MYSQLI_NUM) {
-            trigger_error('Deprecated call: '.__CLASS__.'::'.__METHOD__.' for MYSQLI_ASSOC|MYSQL_BOTH', E_USER_DEPRECATED);
-            return mysqli_fetch_array($this->result, $typ);
-        } else {
-            return mysqli_fetch_row($this->result);
+        return mysqli_fetch_row($this->result);
+    }
+/**
+ * fetchArray
+ * @param  int $iType MYSQL_ASSOC(default) | MYSQL_BOTH | MYSQL_NUM
+ * @return array of current record
+ * @description get current record and increment pointer
+ */
+    public function fetchArray($iType = MYSQLI_ASSOC)
+    {
+        if ($iType < MYSQLI_ASSOC || $iType > MYSQLI_BOTH) {
+            $iType = MYSQLI_ASSOC;
         }
+        return mysqli_fetch_array($this->result, $iType);
     }
 /**
  * fetchObject
@@ -462,19 +470,6 @@
         }
     }
 /**
- * fetchArray
- * @param  int $iType MYSQL_ASSOC(default) | MYSQL_BOTH | MYSQL_NUM
- * @return array of current record
- * @description get current record and increment pointer
- */
-    public function fetchArray($iType = MYSQLI_ASSOC)
-    {
-        if ($iType < MYSQLI_ASSOC || $iType > MYSQLI_BOTH) {
-            $iType = MYSQLI_ASSOC;
-        }
-        return mysqli_fetch_array($this->result, $iType);
-    }
-/**
  * fetchAll
  * @param  int $iType MYSQL_ASSOC(default) | MYSQL_NUM
  * @return array of rows
