create_function error
-
Attention:
Not fully tested. Please test if it works on your system. Responsibility belongs to you.
I would be very happy if you let me know.Deprecated: Function create_function() is deprecated in /home/umut58tr/public_html/wp-content/plugins/wp-db-backup/wp-db-backup.php on line 221
/home/umut58tr/public_html/wp-content/plugins/wp-db-backup/wp-db-backup.php
create_function() -> function()/* line 221 */ add_action(‘admin_footer’, create_function(”, ‘ob_end_flush();’));
/* line 1197 */ $all_tables = array_map(create_function(‘$a’, ‘return $a[0];’), $all_tables);
/* line 1430 */ $all_tables = array_map(create_function(‘$a’, ‘return $a[0];’), $all_tables);New code
/* line 221 */ add_action(‘admin_footer’, function(){ return ob_end_flush(); });
/* line 1197 */ $all_tables = array_map( function($a){ return $a[0]; }, $all_tables);
/* line 1430 */ $all_tables = array_map( function($a){ return $a[0]; }, $all_tables);The page I need help with: [log in to see the link]
- The topic ‘create_function error’ is closed to new replies.