Skip to content

Commit ac34dcd

Browse files
author
nekorjira
committed
bump to v1.2.3
1 parent 1c6936f commit ac34dcd

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 1.2.1 (15 jan 2015)
1+
### 1.2.3 (21 jan 2015)
2+
* Fixes "Wrong PHP Console eval request signature" error when executing WordPress code from terminal, props @Polfo @barbushin
3+
4+
### 1.2.2 (15 jan 2015)
25
* Submission to WordPress.org plugins repository.
36

47
### 1.2.1 (12 dec 2014)

README.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ An implementation of PHP Console for WordPress. Use Chrome Dev Tools to debug yo
1414

1515
WP PHP Console allows you to handle WordPress PHP errors & exceptions, dump variables, execute PHP code remotely and many other things using Google Chrome extension PHP Console and PhpConsole server library.
1616

17-
For support and pull requests, please refer to https://github.com/nekojira/wp-php-console and read the instructions there - thank you.
17+
[PHP Console](https://github.com/barbushin/php-console) is a PHP library by barbushin.
18+
19+
For support and pull requests, please refer to [WP PHP Console Github repo](https://github.com/nekojira/wp-php-console) and read the instructions there - thank you.
1820

1921
== Installation ==
2022

@@ -38,7 +40,7 @@ To install the extension, take the following steps:
3840

3941
= Is this an official plugin from PHP Console author? =
4042

41-
No, it isn't, but it makes use of PHP Console library.
43+
No, but it makes use of Sergey's PHP Console library as it is.
4244

4345
= Does it work with Firefox? Internet Explorer? Opera? Other browsers? =
4446

@@ -50,6 +52,9 @@ None yet.
5052

5153
== Changelog ==
5254

55+
= 1.2.3 =
56+
* Fixes "Wrong PHP Console eval request signature" error when executing WordPress code from terminal
57+
5358
= 1.2.2 =
5459
* Bugfixes
5560
* Submission to WordPress.org plugins repo

lib/class-wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class WP_PHP_Console {
5353
public function __construct() {
5454

5555
$this->plugin_name = 'wp-php-console';
56-
$this->version = '1.1.0';
56+
$this->version = '1.2.3';
5757
$this->options = get_option( 'wp-php-console' );
5858

5959
add_action( 'plugins_loaded', array( $this, 'set_locale' ) );

wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: WP PHP Console
1010
* Plugin URI: https://github.com/nekojira/wp-php-console/
1111
* Description: An implementation of PHP Console for WordPress. Easily debug and trace PHP errors and warnings from your Chrome dev tools console using a Google Chrome extension.
12-
* Version: 1.2.2
12+
* Version: 1.2.3
1313
* Author: nekojira
1414
* Author URI: https://github.com/nekojira/
1515
* License: GPL-2.0+

0 commit comments

Comments
 (0)