Plugin Directory

Changeset 326976


Ignore:
Timestamp:
12/29/2010 05:55:11 PM (15 years ago)
Author:
mikelynn
Message:

checking in version 1.0.8 - found a bug in save routine

Location:
graceful-sidebar-plugin
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • graceful-sidebar-plugin/tags/1.0.8/graceful_sidebar.php

    r326915 r326976  
    7272
    7373        $graceful_title = $graceful_title_legacy;
     74    } else {
     75        update_post_meta($post->ID, "_graceful_title", $graceful_title_legacy);
    7476    }
    7577    if ($graceful_content_legacy!='' && $graceful_content=='') {
     
    7981        delete_post_meta($post->ID, "graceful_content");
    8082        $graceful_content = $graceful_content_legacy;
     83    } else {
     84        update_post_meta($post->ID, "_graceful_content", $graceful_content);
    8185    }
     86       
    8287    ?>
    8388    <p>This content will be displayed in the sidebar for this post or page - ONLY for this post or page.  Be certain that you enable the Graceful Sidebar Widget by dragging it to a sidebar area in your theme from the Appearances->Widgets administration panel.  <a href=http://www.mlynn.org/graceful-sidebar-plugin>More Information</a><p>
  • graceful-sidebar-plugin/tags/1.0.8/readme.txt

    r326915 r326976  
    77Requires at least: 2.8
    88Tested up to: 3.0.3
    9 Stable tag: 1.0.7
     9Stable tag: 1.0.8
    1010
    1111Create custom sidebars for your posts or pages.
     
    3939== Changelog ==
    4040
     41= Version 1.0.8 =
     42* Fixed a bug in the save routine
     43
    4144= Version 1.0.7 =
    4245* Replaced standard custom fields variables with field variables that will not display in the custom field boxes - since we now use our own post meta boxes to store these values.
     
    6770== Upgrade Notice ==
    6871
     72= 1.0.8 =
     73* Bugfix in save routine - fixed.
     74
    6975= 1.0.7 =
    7076* Custom field enhancements - PLEASE BACKUP YOUR DATABASE PRIOR TO UPGRADE!!!
  • graceful-sidebar-plugin/trunk/graceful_sidebar.php

    r326915 r326976  
    7272
    7373        $graceful_title = $graceful_title_legacy;
     74    } else {
     75        update_post_meta($post->ID, "_graceful_title", $graceful_title_legacy);
    7476    }
    7577    if ($graceful_content_legacy!='' && $graceful_content=='') {
     
    7981        delete_post_meta($post->ID, "graceful_content");
    8082        $graceful_content = $graceful_content_legacy;
     83    } else {
     84        update_post_meta($post->ID, "_graceful_content", $graceful_content);
    8185    }
     86       
    8287    ?>
    8388    <p>This content will be displayed in the sidebar for this post or page - ONLY for this post or page.  Be certain that you enable the Graceful Sidebar Widget by dragging it to a sidebar area in your theme from the Appearances->Widgets administration panel.  <a href=http://www.mlynn.org/graceful-sidebar-plugin>More Information</a><p>
  • graceful-sidebar-plugin/trunk/readme.txt

    r326915 r326976  
    77Requires at least: 2.8
    88Tested up to: 3.0.3
    9 Stable tag: 1.0.7
     9Stable tag: 1.0.8
    1010
    1111Create custom sidebars for your posts or pages.
     
    3939== Changelog ==
    4040
     41= Version 1.0.8 =
     42* Fixed a bug in the save routine
     43
    4144= Version 1.0.7 =
    4245* Replaced standard custom fields variables with field variables that will not display in the custom field boxes - since we now use our own post meta boxes to store these values.
     
    6770== Upgrade Notice ==
    6871
     72= 1.0.8 =
     73* Bugfix in save routine - fixed.
     74
    6975= 1.0.7 =
    7076* Custom field enhancements - PLEASE BACKUP YOUR DATABASE PRIOR TO UPGRADE!!!
Note: See TracChangeset for help on using the changeset viewer.