Plugin Directory

Changeset 1368330


Ignore:
Timestamp:
03/10/2016 02:40:23 PM (10 years ago)
Author:
WebTechGlobal
Message:

Fix for a bug reported today regarding data import submission.

Location:
csv-2-post/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • csv-2-post/trunk/csv-2-post.php

    r1367686 r1368330  
    22/*
    33Plugin Name: CSV 2 POST
    4 Version: 8.2.7
     4Version: 8.2.8
    55Plugin URI: http://www.webtechglobal.co.uk/csv-2-post
    66Description: CSV 2 POST data importer for WordPress by Ryan R. Bayne.
     
    3939             
    4040// define constants                             
    41 if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.7' );}
     41if(!defined( "CSV2POST_VERSION") ){define( "CSV2POST_VERSION", '8.2.8' );}
    4242if(!defined( "CSV2POST_TITLE") ){define( "CSV2POST_TITLE", 'CSV 2 POST' );}
    4343if(!defined( "CSV2POST__FILE__") ){define( "CSV2POST__FILE__", __FILE__);}
  • csv-2-post/trunk/readme.txt

    r1367686 r1368330  
    125125
    126126== Changelog ==
     127= 8.2.8 =
     128* Feature Changes
     129    * None
     130* Technical Changes
     131    * Bug fix related to accessing view file when importing data.
     132   
    127133= 8.2.7 =
    128134* Feature Changes
  • csv-2-post/trunk/views/infolastpost.php

    r1367686 r1368330  
    3939        return $this->meta_boxes_array = array(
    4040            // array( id, title, callback (usually parent, approach created by Ryan Bayne), context (position), priority, call back arguments array, add to dashboard (boolean), required capability
    41             array( $view_name . '-generalpostsettings', __( 'General', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'generalpostsettings' ), true, 'activate_plugins' ),
    42             array( $view_name . '-lastpostcontent', __( 'Content', 'csv2post' ), array( $this, 'parent' ), 'normal','default',array( 'formid' => 'lastpostcontent' ), true, 'activate_plugins' ),
     41            array( $this->view_name . '-generalpostsettings', __( 'General', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'generalpostsettings' ), true, 'activate_plugins' ),
     42            array( $this->view_name . '-lastpostcontent', __( 'Content', 'csv2post' ), array( $this, 'parent' ), 'normal','default',array( 'formid' => 'lastpostcontent' ), true, 'activate_plugins' ),
    4343        );   
    4444    }
  • csv-2-post/trunk/views/postcategories.php

    r1367686 r1368330  
    4545            array( $this->view_name . '-categorycreation', __( 'Category Creation', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'categorycreation' ), true, 'activate_plugins' ),
    4646            array( $this->view_name . '-setpostscategories', __( 'Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'setpostscategories' ), true, 'activate_plugins' ),
    47             //array( $view_name . '-resetpostscategories', __( 'Re-Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'resetpostscategories' ), true, 'activate_plugins' ),
     47            //array( $this->view_name . '-resetpostscategories', __( 'Re-Set Posts Categories', 'csv2post' ), array( $this, 'parent' ), 'side','default',array( 'formid' => 'resetpostscategories' ), true, 'activate_plugins' ),
    4848       
    4949        );   
  • csv-2-post/trunk/views/setupimport.php

    r1367686 r1368330  
    8989
    9090        } else {
    91             $this->add_meta_box( $view_name . '-nocurrentproject', __( 'No Current Project', 'csv2post' ), array( $this->UI, 'metabox_nocurrentproject' ), 'normal','default',array( 'formid' => 'nocurrentproject' ) );     
     91            $this->add_meta_box( $this->view_name . '-nocurrentproject', __( 'No Current Project', 'csv2post' ), array( $this->UI, 'metabox_nocurrentproject' ), 'normal','default',array( 'formid' => 'nocurrentproject' ) );     
    9292        }   
    9393    }
Note: See TracChangeset for help on using the changeset viewer.