Plugin Directory

Changeset 438020


Ignore:
Timestamp:
09/14/2011 10:34:50 AM (15 years ago)
Author:
bhoogterp
Message:

v1.0.2

Location:
scripture-cloud
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • scripture-cloud/tags/1.0.2/readme.txt

    r436696 r438020  
    11=== Scripture Cloud ===
    22Contributors: bhoogterp
    3 Version: 1.0.1
     3Version: 1.0.2
    44Donate link: http://www.churchofthebeyond.com/
    55Tags: bible, widget, scripture, verse, passage, cloud
    66Requires at least: 3.2.1
    77Tested up to: 3.2.1
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99
    1010Creates a Scripture Cloud of referenced Bible verses in your blog.
     
    35351.0.0   Initial Version
    36361.0.1   Install issue fixed
     371.0.2   Save issue fixed
    3738
    3839== Upgrade Notice ==
    39401.0.0  Installation!
     411.0.2  Get it!
    4042
    4143== Screenshots ==
  • scripture-cloud/tags/1.0.2/scripturecloud.php

    r436696 r438020  
    3030// Add our function to the widgets_init hook.
    3131add_action('widgets_init', 'scripturecloud_load');
    32 add_action('post_save', 'scripturecloud_save');
     32add_action('save_post', 'scripturecloud_save');
    3333
    3434function scripturecloud_load()  {   include_once("scripturecloud_widget.php"); register_widget('scripturecloud_widget');    }
    35 function scripturecloud_save()  {   scripturecloud_update_post($id);    }
     35function scripturecloud_save($id)   {   scripturecloud_update_post($id);    }
    3636
    3737?>
  • scripture-cloud/trunk/readme.txt

    r436696 r438020  
    11=== Scripture Cloud ===
    22Contributors: bhoogterp
    3 Version: 1.0.1
     3Version: 1.0.2
    44Donate link: http://www.churchofthebeyond.com/
    55Tags: bible, widget, scripture, verse, passage, cloud
    66Requires at least: 3.2.1
    77Tested up to: 3.2.1
    8 Stable tag: 1.0.1
     8Stable tag: 1.0.2
    99
    1010Creates a Scripture Cloud of referenced Bible verses in your blog.
     
    35351.0.0   Initial Version
    36361.0.1   Install issue fixed
     371.0.2   Save issue fixed
    3738
    3839== Upgrade Notice ==
    39401.0.0  Installation!
     411.0.2  Get it!
    4042
    4143== Screenshots ==
  • scripture-cloud/trunk/scripturecloud.php

    r436696 r438020  
    3030// Add our function to the widgets_init hook.
    3131add_action('widgets_init', 'scripturecloud_load');
    32 add_action('post_save', 'scripturecloud_save');
     32add_action('save_post', 'scripturecloud_save');
    3333
    3434function scripturecloud_load()  {   include_once("scripturecloud_widget.php"); register_widget('scripturecloud_widget');    }
    35 function scripturecloud_save()  {   scripturecloud_update_post($id);    }
     35function scripturecloud_save($id)   {   scripturecloud_update_post($id);    }
    3636
    3737?>
Note: See TracChangeset for help on using the changeset viewer.