Skip to content

Commit 6763bfd

Browse files
committed
Merge branch 'release/v1.0.1' into main
2 parents 5da8b67 + 57e1dcb commit 6763bfd

5 files changed

Lines changed: 31 additions & 12 deletions

File tree

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Donate link: https://paypal.me/qriouslad
55
Tags: database manager, adminer, mysql, mariadb, sql
66
Requires at least: 4.8
77
Tested up to: 5.9.3
8-
Stable tag: 1.0.0
8+
Stable tag: 1.0.1
99
Requires PHP: 5.6
1010
License: GPLv2 or later
1111
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -29,6 +29,10 @@ Securely manage your website's database with a clean and user-friendly interface
2929

3030
1. The main Database Admin page
3131
![The main Database Admin page](.wordpress-org/screenshot-1.png)
32+
2. Viewing the wp_posts table
33+
![Viewing the wp_posts table](.wordpress-org/screenshot-2.png)
34+
3. Editing a record in the wp_options table
35+
![Editing a record in the wp_options table](.wordpress-org/screenshot-3.png)
3236

3337
## Frequently Asked Questions
3438

@@ -38,6 +42,13 @@ System Dashboard was built with: [WordPress Plugin Boilerplate](https://github.c
3842

3943
## Changelog
4044

45+
### 1.0.1 (2022.04.30)
46+
47+
* Fix: deprecated sanitize_url() function
48+
* Fix: can not redeclare is_ajax() function
49+
* Improvement: enable Adminer permanent login by default
50+
* Improvement: several CSS styling changes for better consistency
51+
4152
### 1.0.0 (2022.04.24)
4253

4354
* Initial stable release

admin/class-database-admin-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function da_adminer() {
122122
*/
123123
public function da_maybe_include_adminer() {
124124

125-
$request_uri = sanitize_url( $_SERVER['REQUEST_URI'] );
125+
$request_uri = esc_url_raw( $_SERVER['REQUEST_URI'] );
126126

127127
if ( strpos( $request_uri, 'dbadmnr' ) !== false ) {
128128

0 commit comments

Comments
 (0)