Version Description
- Fixed path for Toolset Installer
Download this release
Release Info
Developer | christianglingener |
Plugin | Toolset Types – Custom Post Types, Custom Fields and Taxonomies |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.2.1
library/toolset/toolset-common/inc/toolset.menu.class.php
CHANGED
@@ -81,7 +81,7 @@ if ( ! class_exists( 'Toolset_Menu' ) ) {
|
|
81 |
$top_level_page = array_shift( $registered_pages );
|
82 |
$top_level_page['capability'] = isset( $top_level_page['capability'] ) ? $top_level_page['capability'] : 'manage_options';
|
83 |
if ( current_user_can( $top_level_page['capability'] ) ) {
|
84 |
-
$hook = add_menu_page( $top_level_page['page_title'],
|
85 |
$this->add_menu_page_hooks( $top_level_page, $hook );
|
86 |
$top_level_page_registered = true;
|
87 |
}
|
81 |
$top_level_page = array_shift( $registered_pages );
|
82 |
$top_level_page['capability'] = isset( $top_level_page['capability'] ) ? $top_level_page['capability'] : 'manage_options';
|
83 |
if ( current_user_can( $top_level_page['capability'] ) ) {
|
84 |
+
$hook = add_menu_page( $top_level_page['page_title'], 'Toolset', $top_level_page['capability'], $top_level_page['slug'], $top_level_page['callback'] );
|
85 |
$this->add_menu_page_hooks( $top_level_page, $hook );
|
86 |
$top_level_page_registered = true;
|
87 |
}
|
library/toolset/toolset-common/loader.php
CHANGED
@@ -29,7 +29,7 @@
|
|
29 |
* we define the version here
|
30 |
*/
|
31 |
|
32 |
-
$toolset_common_version =
|
33 |
|
34 |
// ----------------------------------------------------------------------//
|
35 |
// WARNING * WARNING * WARNING
|
29 |
* we define the version here
|
30 |
*/
|
31 |
|
32 |
+
$toolset_common_version = 220001;
|
33 |
|
34 |
// ----------------------------------------------------------------------//
|
35 |
// WARNING * WARNING * WARNING
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Domain Path: /embedded/locale
|
|
7 |
License: GPLv2
|
8 |
Requires at least: 3.7
|
9 |
Tested up to: 4.6
|
10 |
-
Stable tag: 2.2
|
11 |
|
12 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
13 |
|
@@ -151,6 +151,10 @@ Additionally, Types is the only plugin that lets you define parent/child relatio
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
|
|
154 |
= 2.2 =
|
155 |
|
156 |
* Added feature to output title, description, caption and alt text using placeholders in image field.
|
7 |
License: GPLv2
|
8 |
Requires at least: 3.7
|
9 |
Tested up to: 4.6
|
10 |
+
Stable tag: 2.2.1
|
11 |
|
12 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
13 |
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 2.2.1 =
|
155 |
+
|
156 |
+
* Fixed path for Toolset Installer
|
157 |
+
|
158 |
= 2.2 =
|
159 |
|
160 |
* Added feature to output title, description, caption and alt text using placeholders in image field.
|
wpcf.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://wordpress.org/extend/plugins/types/
|
|
5 |
Description: Toolset Types defines custom content in WordPress. Easily create custom post types, fields and taxonomy and connect everything together.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
-
Version: 2.2
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Types is free software: you can redistribute it and/or modify
|
@@ -28,7 +28,7 @@ if( !function_exists( 'add_action' ) )
|
|
28 |
|
29 |
// version
|
30 |
if( ! defined( 'TYPES_VERSION' ) )
|
31 |
-
define( 'TYPES_VERSION', '2.2' );
|
32 |
|
33 |
// backward compatibility
|
34 |
if ( ! defined( 'WPCF_VERSION' ) )
|
5 |
Description: Toolset Types defines custom content in WordPress. Easily create custom post types, fields and taxonomy and connect everything together.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
+
Version: 2.2.1
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Types is free software: you can redistribute it and/or modify
|
28 |
|
29 |
// version
|
30 |
if( ! defined( 'TYPES_VERSION' ) )
|
31 |
+
define( 'TYPES_VERSION', '2.2.1' );
|
32 |
|
33 |
// backward compatibility
|
34 |
if ( ! defined( 'WPCF_VERSION' ) )
|