We changed it on this way. It works ??
\wp-admin\includes\class-wp-list-table.php Zeile 1240
public function single_row( $item ) {
–>
public function single_row( $item, $level = 0, $data = array(), $index = 0 ) {
———————————-
\wp-content\themes\kleo\kleo-framework\lib\class-tgm-plugin-activation.php Zeile 2536
public function single_row( $item ) {
–>
public function single_row( $item, $level = 0, $data = array(), $index = 0 ) {
———————————-
\wp-admin\includes\class-wp-posts-list-table.php Zeile 1161
public function single_row( $post, $level = 0 ) {
–>
public function single_row( $post, $level = 0, $data = array(), $index = 0 ) {
———————————–
\wp-content\plugins\wowslider\list-table.php Zeile 174, 169
function display_rows(){
$index = 1;
foreach ($this -> items as $data){
$this -> single_row($data[‘id’], $data, $index);
$index++;
}
}
function single_row($id, $data, $index){
–>
function display_rows(){
$index = 1;
foreach ($this -> items as $data){
$this -> single_row($data[‘id’], 0, $data, $index);
$index++;
}
}
function single_row($id, $level = 0, $data = array(), $index = 0){