Changeset 229761
- Timestamp:
- 04/16/2010 02:16:29 AM (15 years ago)
- Location:
- wp-category-manager/tags/1.2.0.1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-category-manager/tags/1.2.0.1/manage-category.php
r228737 r229761 1 2 1 <?php 3 2 /* 4 3 * This page is executed via an ajax call from the wordpress admin when actions are performed 5 4 */ 5 6 // Since this is an API Page, Set no caching. We dont want anything accidentally not updating. 7 // ToDo: In a future revision, it would make sense to add a query string parameter similar to allowCache=true that would allow caching of calls to the API 8 if ($_SERVER['REQUEST_METHOD'] === 'GET') 9 { 10 header("Cache-Control: no-store, no-cache"); 11 header("Pragma: no-cache"); 12 } 6 13 7 14 … … 25 32 if($_REQUEST['action'] == 'getPosts') 26 33 { 27 //Set no caching28 header("Cache-Control: no-store, no-cache");29 header("Pragma: no-cache");30 31 34 //var_dump($_GET['category']); 32 35 renderPosts(getPostListForCat($_GET['category'])); -
wp-category-manager/tags/1.2.0.1/readme.txt
r228752 r229761 4 4 Requires at least: 2.8.1 5 5 Tested up to: 2.9.2 6 Stable tag: 1.2.0. 06 Stable tag: 1.2.0.1 7 7 8 8 The WP Category Manager plugin makes it easier to manage categories that are used to control the posts within widgets in the presentation layer … … 39 39 == Changelog == 40 40 41 = 1.2.0.1 = 42 Fixed a bug where category updates, returned an error to the user in certain configurations 43 41 44 = 1.2.0.0 = 42 45 * A few minor bug fixes … … 50 53 = 1.0.0.0 = 51 54 * Release to public. Settings page to control the category being managed, Category management module on the dashboard 52 -
wp-category-manager/tags/1.2.0.1/wp-category-manager.php
r228755 r229761 3 3 Plugin Name: Category Manager 4 4 Plugin URI: http://www.mustakes.com/wp-category-manager/ 5 Description: This plugin makes it easier to manage the addition and removal of a specific category on posts.5 Description: This plugin makes it easier to manage the removal of a specific category on posts. Mainly used when categories are set to control display on a page. 6 6 Author: Mustansir Golawala 7 Version: 1.2 7 Version: 1.2.0.1 8 8 Author URI: http://www.mustakes.com/ 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.