Changeset 1369079
- Timestamp:
- 03/11/2016 10:24:28 AM (10 years ago)
- Location:
- csv-2-post/trunk
- Files:
-
- 3 edited
-
classes/class-requests.php (modified) (2 diffs)
-
csv-2-post.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
csv-2-post/trunk/classes/class-requests.php
r1355720 r1369079 1207 1207 * @package CSV 2 POST 1208 1208 * @since 8.0.0 1209 * @version 1. 11209 * @version 1.2 1210 1210 */ 1211 1211 public function deletecustomfieldrule() { … … 1218 1218 return; 1219 1219 } 1220 1221 if( !isset( $customfields_array['cflist'][$_GET['cfid']] ) ){1220 1221 if( !isset( $customfields_array['customfields']['cflist'][ $_GET['cfid'] ] ) ){ 1222 1222 $this->UI->create_notice( __( 'The ID submitted could not be found, it appears your custom field has already been deleted.' ), 'error', 'Small', __( 'ID Does Not Exist' ) ); 1223 1223 return; 1224 1224 } 1225 1225 1226 unset( $customfields_array['c flist'][$_GET['cfid']] );1226 unset( $customfields_array['customfields']['cflist'][$_GET['cfid']] ); 1227 1227 1228 1228 $this->CSV2POST->update_project( $csv2post_settings['currentproject'], array( 'projectsettings' => maybe_serialize( $customfields_array ) ), true ); -
csv-2-post/trunk/csv-2-post.php
r1368330 r1369079 2 2 /* 3 3 Plugin Name: CSV 2 POST 4 Version: 8.2. 84 Version: 8.2.9 5 5 Plugin URI: http://www.webtechglobal.co.uk/csv-2-post 6 6 Description: CSV 2 POST data importer for WordPress by Ryan R. Bayne. … … 39 39 40 40 // define constants 41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2. 8' );}41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.9' );} 42 42 if(!defined( "CSV2POST_TITLE") ){define( "CSV2POST_TITLE", 'CSV 2 POST' );} 43 43 if(!defined( "CSV2POST__FILE__") ){define( "CSV2POST__FILE__", __FILE__);} -
csv-2-post/trunk/readme.txt
r1368330 r1369079 125 125 126 126 == Changelog == 127 = 8.2.9 = 128 * Feature Changes 129 * Can now delete custom field rules. 130 * Technical Changes 131 * None 132 127 133 = 8.2.8 = 128 134 * Feature Changes
Note: See TracChangeset
for help on using the changeset viewer.