Plugin Directory

Changeset 185297


Ignore:
Timestamp:
12/20/2009 12:28:57 PM (16 years ago)
Author:
randomaniac
Message:

Fixed to work with Wordpress 2.9

Location:
page-tagger/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • page-tagger/trunk/README.txt

    r185289 r185297  
    66Requires at least: 2.8.4
    77Tested up to: 2.9
    8 Stable tag: 0.3.3
     8Stable tag: 0.3.4
    99
    1010Page Tagger is a Wordpress plugin which lets you tag your pages just like you do with your posts. It adds a tagging widget in the page-editing view in the admin interface.
     
    2323
    2424== Changelog ==
     25
     26= 0.3.4 (Dec 20, 2009) =
     27* Fixed to work with Wordpress 2.9
    2528
    2629= 0.3.3 (Nov 20, 2009) =
  • page-tagger/trunk/page-tagger.js

    r175474 r185297  
    33Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    44Description: Enables tagging for pages.
    5 Version: 0.3.3
     5Version: 0.3.4
    66Author: Ramesh Nair
    77Author URI: http://www.hiddentao.com/
     
    8686function tag_save_on_publish() {
    8787    jQuery('.tagsdiv').each( function(i) {
    88         if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
     88        if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') ) {
    8989            tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
    90         } );
     90        } else {
     91            // just in case tag_flush_to_text gets called later on anyway
     92            jQuery(this).find('input.newtag').val('');
     93        }
     94    } );
    9195}
    9296
  • page-tagger/trunk/page-tagger.php

    r175474 r185297  
    2222Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    2323Description: Enables tagging for pages.
    24 Version: 0.3.3
     24Version: 0.3.4
    2525Author: Ramesh Nair
    2626Author URI: http://www.hiddentao.com/
Note: See TracChangeset for help on using the changeset viewer.