Version Description
Download this release
Release Info
Developer | GamerZ |
Plugin | WP-DBManager |
Version | 2.80.8 |
Comparing to | |
See all releases |
Code changes from version 2.80.7 to 2.80.8
- database-backup.php +2 -2
- readme.txt +4 -1
- wp-dbmanager.php +1 -1
database-backup.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
### Check Whether User Can Manage Database
|
3 |
-
if( ! current_user_can('
|
4 |
-
die('Access Denied');
|
5 |
}
|
6 |
|
7 |
|
1 |
<?php
|
2 |
### Check Whether User Can Manage Database
|
3 |
+
if ( ! current_user_can( 'install_plugins' ) ) {
|
4 |
+
die( 'Access Denied' );
|
5 |
}
|
6 |
|
7 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://lesterchan.net/site/donation/
|
|
4 |
Tags: database, manage, wp-dbmanager, manager, table, optimize, backup, queries, query, drop, empty, tables, table, run, repair, cron, schedule, scheduling, automatic
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 2.80.
|
8 |
|
9 |
Manages your WordPress database.
|
10 |
|
@@ -42,6 +42,9 @@ Allows you to optimize database, repair database, backup database, restore datab
|
|
42 |
* To know about the difference between WP-DBManager and WP-DB-backup, checkout __What is the difference between WP-DBManager and WP-DB-Backup?__ in the [FAQ section](https://wordpress.org/plugins/wp-dbmanager/faq/).
|
43 |
|
44 |
## Changelog
|
|
|
|
|
|
|
45 |
### Version 2.80.7
|
46 |
* FIXED: Changed 'edit_files' capability to 'install_plugins' instead.
|
47 |
|
4 |
Tags: database, manage, wp-dbmanager, manager, table, optimize, backup, queries, query, drop, empty, tables, table, run, repair, cron, schedule, scheduling, automatic
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 2.80.8
|
8 |
|
9 |
Manages your WordPress database.
|
10 |
|
42 |
* To know about the difference between WP-DBManager and WP-DB-backup, checkout __What is the difference between WP-DBManager and WP-DB-Backup?__ in the [FAQ section](https://wordpress.org/plugins/wp-dbmanager/faq/).
|
43 |
|
44 |
## Changelog
|
45 |
+
### Versio 2.80.8
|
46 |
+
* FIXED: Miss out database-backup.php.
|
47 |
+
|
48 |
### Version 2.80.7
|
49 |
* FIXED: Changed 'edit_files' capability to 'install_plugins' instead.
|
50 |
|
wp-dbmanager.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-DBManager
|
4 |
Plugin URI: https://lesterchan.net/portfolio/programming/php/
|
5 |
Description: Manages your WordPress database. Allows you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries. Supports automatic scheduling of backing up, optimizing and repairing of database.
|
6 |
-
Version: 2.80.
|
7 |
Author: Lester 'GaMerZ' Chan
|
8 |
Author URI: https://lesterchan.net
|
9 |
Text Domain: wp-dbmanager
|
3 |
Plugin Name: WP-DBManager
|
4 |
Plugin URI: https://lesterchan.net/portfolio/programming/php/
|
5 |
Description: Manages your WordPress database. Allows you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries. Supports automatic scheduling of backing up, optimizing and repairing of database.
|
6 |
+
Version: 2.80.8
|
7 |
Author: Lester 'GaMerZ' Chan
|
8 |
Author URI: https://lesterchan.net
|
9 |
Text Domain: wp-dbmanager
|