Plugin Directory

Changeset 523576 for cms-tree-page-view


Ignore:
Timestamp:
03/26/2012 05:44:12 AM (13 years ago)
Author:
eskapism
Message:

version 0.8.9

Location:
cms-tree-page-view
Files:
4 added
1 deleted
3 edited
49 copied

Legend:

Unmodified
Added
Removed
  • cms-tree-page-view/tags/0.8.9/functions.php

    r517276 r523576  
    99    global $cms_tpv_view;
    1010    if (isset($_GET["cms_tpv_view"])) {
    11         $cms_tpv_view = $_GET["cms_tpv_view"];
     11        $cms_tpv_view = htmlspecialchars($_GET["cms_tpv_view"]);
    1212    } else {
    1313        $cms_tpv_view = "all";
  • cms-tree-page-view/tags/0.8.9/index.php

    r517276 r523576  
    44Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
    55Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree view to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
    6 Version: 0.8.8
     6Version: 0.8.9
    77Author: Pär Thernström
    88Author URI: http://eskapism.se/
     
    2929require(dirname(__FILE__)."/functions.php");
    3030
    31 define( "CMS_TPV_VERSION", "0.8.8");
     31define( "CMS_TPV_VERSION", "0.8.9");
    3232define( "CMS_TPV_NAME", "CMS Tree Page View");
    3333
  • cms-tree-page-view/tags/0.8.9/readme.txt

    r517276 r523576  
    55Requires at least: 3.0
    66Tested up to: 3.3.1
    7 Stable tag: 0.8.8
     7Stable tag: 0.8.9
    88
    99Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
     
    8787== Changelog ==
    8888
     89= 0.8.9 =
     90- Added Belarusian translation. thanks Web Geek Science  (<a href="http://webhostinggeeks.com/">Web Hosting Geeks</a>)
     91- Fixed XSS vulnerability as described here: https://www.htbridge.com/advisory/HTB23083
     92
    8993= 0.8.8 =
    9094- Fix for tree not remembering state
  • cms-tree-page-view/trunk/functions.php

    r517276 r523576  
    99    global $cms_tpv_view;
    1010    if (isset($_GET["cms_tpv_view"])) {
    11         $cms_tpv_view = $_GET["cms_tpv_view"];
     11        $cms_tpv_view = htmlspecialchars($_GET["cms_tpv_view"]);
    1212    } else {
    1313        $cms_tpv_view = "all";
  • cms-tree-page-view/trunk/index.php

    r517276 r523576  
    44Plugin URI: http://eskapism.se/code-playground/cms-tree-page-view/
    55Description: Adds a CMS-like tree view of all your pages, like the view often found in a page-focused CMS. Use the tree view to edit, view, add pages and search pages (very useful if you have many pages). And with drag and drop you can rearrange the order of your pages. Page management won't get any easier than this!
    6 Version: 0.8.8
     6Version: 0.8.9
    77Author: Pär Thernström
    88Author URI: http://eskapism.se/
     
    2929require(dirname(__FILE__)."/functions.php");
    3030
    31 define( "CMS_TPV_VERSION", "0.8.8");
     31define( "CMS_TPV_VERSION", "0.8.9");
    3232define( "CMS_TPV_NAME", "CMS Tree Page View");
    3333
  • cms-tree-page-view/trunk/readme.txt

    r517276 r523576  
    55Requires at least: 3.0
    66Tested up to: 3.3.1
    7 Stable tag: 0.8.8
     7Stable tag: 0.8.9
    88
    99Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.
     
    8787== Changelog ==
    8888
     89= 0.8.9 =
     90- Added Belarusian translation. thanks Web Geek Science  (<a href="http://webhostinggeeks.com/">Web Hosting Geeks</a>)
     91- Fixed XSS vulnerability as described here: https://www.htbridge.com/advisory/HTB23083
     92
    8993= 0.8.8 =
    9094- Fix for tree not remembering state
Note: See TracChangeset for help on using the changeset viewer.