Plugin Directory

Changeset 854881


Ignore:
Timestamp:
02/10/2014 04:59:10 PM (12 years ago)
Author:
tzavdesign
Message:

Minor updates 1.1.1

Location:
post-author
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • post-author/tags/1.1.1/post_author.php

    r854244 r854881  
    55Description: Adds the name of author at the top or bottom of the content or excerpts (post / page / archive), plus optional publishing and last editing date, complete with surrounding text and a per-post hide option for exceptions.
    66Author: David Shabtai
    7 Version: 1.1
     7Version: 1.1.1
    88Author URI: http://www.glanum.com
    99Copyright (C) 2014 David Shabtai
     
    713713    {
    714714        add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'post', 'normal');
    715         add_meta_box('pageauthordiv', __('Page Author'), 'post_author_custom_box', 'page', 'normal');
     715        add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'page', 'normal');
    716716    }
    717717}
     
    754754        $post_author_custom .= 'checked="checked"';
    755755    }
    756     $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';
     756    $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '_value">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';
    757757    $post_author_custom .= '</span>';
    758758    echo $original_wp_author_box . $post_author_custom;
  • post-author/tags/1.1.1/readme.txt

    r854244 r854881  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99
     
    8686* Requires WP >= 3.2
    8787
     88= 1.1.1 =
     89* Bugfix : Minor update for the Author box on page edit (there could be a confusion and duplicate author box depending on view settings and WP version). This update makes sure we use the same Author box as WP on page edition (for WP 3+). And fixed the clickable label, same place.
     90
    8891= 1.1 =
    8992* Improvement : Updated the method for loading translation files.
     
    119122= 0.4 =
    120123* Improvement : Added last revision author name, link and date, all customizable. Some tiny CSS update to accomodate new function.
    121 * Bug fix : for WP 9.0+, remove deprecated page_author_meta_box on new/edit page articles.
     124* Bug fix : for WP 2.9.0+, remove deprecated page_author_meta_box on new/edit page articles.
    122125* Bug fix : hide exception on posts and pages update was broken.
    123126
  • post-author/trunk/post_author.php

    r854244 r854881  
    55Description: Adds the name of author at the top or bottom of the content or excerpts (post / page / archive), plus optional publishing and last editing date, complete with surrounding text and a per-post hide option for exceptions.
    66Author: David Shabtai
    7 Version: 1.1
     7Version: 1.1.1
    88Author URI: http://www.glanum.com
    99Copyright (C) 2014 David Shabtai
     
    713713    {
    714714        add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'post', 'normal');
    715         add_meta_box('pageauthordiv', __('Page Author'), 'post_author_custom_box', 'page', 'normal');
     715        add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'page', 'normal');
    716716    }
    717717}
     
    754754        $post_author_custom .= 'checked="checked"';
    755755    }
    756     $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';
     756    $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '_value">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';
    757757    $post_author_custom .= '</span>';
    758758    echo $original_wp_author_box . $post_author_custom;
  • post-author/trunk/readme.txt

    r854244 r854881  
    55Requires at least: 3.2
    66Tested up to: 3.8.1
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99
     
    8686* Requires WP >= 3.2
    8787
     88= 1.1.1 =
     89* Bugfix : Minor update for the Author box on page edit (there could be a confusion and duplicate author box depending on view settings and WP version). This update makes sure we use the same Author box as WP on page edition (for WP 3+). And fixed the clickable label, same place.
     90
    8891= 1.1 =
    8992* Improvement : Updated the method for loading translation files.
     
    119122= 0.4 =
    120123* Improvement : Added last revision author name, link and date, all customizable. Some tiny CSS update to accomodate new function.
    121 * Bug fix : for WP 9.0+, remove deprecated page_author_meta_box on new/edit page articles.
     124* Bug fix : for WP 2.9.0+, remove deprecated page_author_meta_box on new/edit page articles.
    122125* Bug fix : hide exception on posts and pages update was broken.
    123126
Note: See TracChangeset for help on using the changeset viewer.