Nested Pages - Version 3.1.11

Version Description

  • Security Update.
Download this release

Release Info

Developer kylephillips
Plugin Icon 128x128 Nested Pages
Version 3.1.11
Comparing to
See all releases

Code changes from version 3.1.10 to 3.1.11

app/Config/Settings.php CHANGED
@@ -151,7 +151,7 @@ class Settings
151
  public function settingsPage()
152
  {
153
  $this->setMenu();
154
- $tab = ( isset($_GET['tab']) ) ? $_GET['tab'] : 'general';
155
  include( Helpers::view('settings/settings') );
156
  }
157
  }
151
  public function settingsPage()
152
  {
153
  $this->setMenu();
154
+ $tab = ( isset($_GET['tab']) ) ? sanitize_text_field($_GET['tab']) : 'general';
155
  include( Helpers::view('settings/settings') );
156
  }
157
  }
app/NestedPages.php CHANGED
@@ -12,7 +12,7 @@ class NestedPages
12
  $np_env = 'live';
13
 
14
  global $np_version;
15
- $np_version = '3.1.10';
16
 
17
  if ( is_admin() ) $app = new NestedPages\Bootstrap;
18
  if ( !is_admin() ) $app = new NestedPages\FrontEndBootstrap;
12
  $np_env = 'live';
13
 
14
  global $np_version;
15
+ $np_version = '3.1.11';
16
 
17
  if ( is_admin() ) $app = new NestedPages\Bootstrap;
18
  if ( !is_admin() ) $app = new NestedPages\FrontEndBootstrap;
nestedpages.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Nested Pages
4
  Plugin URI: http://nestedpages.com
5
  Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while enhancing quick edit. Includes an auto-generated menu to match the nested interface, support for all post types and more.
6
- Version: 3.1.10
7
  Author: Kyle Phillips
8
  Author URI: https://github.com/kylephillips
9
  Text Domain: wp-nested-pages
3
  Plugin Name: Nested Pages
4
  Plugin URI: http://nestedpages.com
5
  Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while enhancing quick edit. Includes an auto-generated menu to match the nested interface, support for all post types and more.
6
+ Version: 3.1.11
7
  Author: Kyle Phillips
8
  Author URI: https://github.com/kylephillips
9
  Text Domain: wp-nested-pages
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Nested Pages ===
2
  Contributors: kylephillips
3
- Donate link: http://nestedpages.com/
4
  Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
5
  Requires at least: 3.8
6
  Tested up to: 5.4
7
  Requires PHP: 5.4
8
- Stable tag: 3.1.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -105,6 +105,9 @@ No. The menu synchronization currently only works within the pages post type.
105
 
106
  == Changelog ==
107
 
 
 
 
108
  = 3.1.10 =
109
  * Updates German translations.
110
  * Adds support for preview_post_link filter.
1
  === Nested Pages ===
2
  Contributors: kylephillips
3
+ Donate link: https://github.com/sponsors/kylephillips/
4
  Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
5
  Requires at least: 3.8
6
  Tested up to: 5.4
7
  Requires PHP: 5.4
8
+ Stable tag: 3.1.10
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
105
 
106
  == Changelog ==
107
 
108
+ = 3.1.11 =
109
+ * Security Update.
110
+
111
  = 3.1.10 =
112
  * Updates German translations.
113
  * Adds support for preview_post_link filter.