Plugin Directory

Changeset 657148


Ignore:
Timestamp:
01/22/2013 11:09:15 PM (13 years ago)
Author:
fancyfiber
Message:

Updating to version 1.2 to fix errors introduced when upgrading ACF to the latest release.

Location:
acf-single-relationship-add-new
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • acf-single-relationship-add-new/tags/1.2/acf-single-relationship-add-new.php

    r648176 r657148  
    44Plugin URI: http://hosting.fancyfiber.com/acf-single-relationship-add-new/
    55Description: With Advanced Custom Fields Installed, relationship fields with a single post type attached will get an "Add New" button. Which will open in a colorbox to add a new item, with out leaving the current item.
    6 Version: 1.1
     6Version: 1.2
    77Author: Fancy Fiber Designs
    88Author URI: http://hosting.fancyfiber.com/design/
  • acf-single-relationship-add-new/tags/1.2/readme.txt

    r648183 r657148  
    55Requires at least: 3.0.0
    66Tested up to: 3.5
    7 Version: 1.1
    8 Stable tag: 1.1
     7Version: 1.2
     8Stable tag: 1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
     59= 1.2 =
     60Fixed post type not updating afer new version of ACF installed. New ACF version split files out and changed the manner of the javascript calls.
     61This version should work for both old and new releases of ACF.
     62
    5963= 1.1 =
    6064Fix bug when WordPress is installed in a subdirectory rather than the root. Thanks to Scott Nath for the fix.
  • acf-single-relationship-add-new/trunk/acf-single-relationship-add-new.php

    r648176 r657148  
    44Plugin URI: http://hosting.fancyfiber.com/acf-single-relationship-add-new/
    55Description: With Advanced Custom Fields Installed, relationship fields with a single post type attached will get an "Add New" button. Which will open in a colorbox to add a new item, with out leaving the current item.
    6 Version: 1.1
     6Version: 1.2
    77Author: Fancy Fiber Designs
    88Author URI: http://hosting.fancyfiber.com/design/
  • acf-single-relationship-add-new/trunk/js/asran-post.js

    r648176 r657148  
    6161                       
    6262         // ajax
    63          acf.relationship_update_results( div );
     63         // ajax
     64         try {
     65           acf.relationship_update_results( div );
     66         }
     67         catch(err) { //ignore errors here
     68         }         
     69         try {
     70         var _relationship = acf.fields.relationship;
     71          _relationship.update_results( div );
     72         }
     73         catch(err) { //ignore errors here
     74         }         
    6475      });
    6576
  • acf-single-relationship-add-new/trunk/readme.txt

    r648183 r657148  
    55Requires at least: 3.0.0
    66Tested up to: 3.5
    7 Version: 1.1
    8 Stable tag: 1.1
     7Version: 1.2
     8Stable tag: 1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
     59= 1.2 =
     60Fixed post type not updating afer new version of ACF installed. New ACF version split files out and changed the manner of the javascript calls.
     61This version should work for both old and new releases of ACF.
     62
    5963= 1.1 =
    6064Fix bug when WordPress is installed in a subdirectory rather than the root. Thanks to Scott Nath for the fix.
Note: See TracChangeset for help on using the changeset viewer.