Changeset 438020
- Timestamp:
- 09/14/2011 10:34:50 AM (15 years ago)
- Location:
- scripture-cloud
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from scripture-cloud/trunk)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
tags/1.0.2/scripturecloud.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/scripturecloud.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scripture-cloud/tags/1.0.2/readme.txt
r436696 r438020 1 1 === Scripture Cloud === 2 2 Contributors: bhoogterp 3 Version: 1.0. 13 Version: 1.0.2 4 4 Donate link: http://www.churchofthebeyond.com/ 5 5 Tags: bible, widget, scripture, verse, passage, cloud 6 6 Requires at least: 3.2.1 7 7 Tested up to: 3.2.1 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 10 10 Creates a Scripture Cloud of referenced Bible verses in your blog. … … 35 35 1.0.0 Initial Version 36 36 1.0.1 Install issue fixed 37 1.0.2 Save issue fixed 37 38 38 39 == Upgrade Notice == 39 40 1.0.0 Installation! 41 1.0.2 Get it! 40 42 41 43 == Screenshots == -
scripture-cloud/tags/1.0.2/scripturecloud.php
r436696 r438020 30 30 // Add our function to the widgets_init hook. 31 31 add_action('widgets_init', 'scripturecloud_load'); 32 add_action(' post_save', 'scripturecloud_save');32 add_action('save_post', 'scripturecloud_save'); 33 33 34 34 function scripturecloud_load() { include_once("scripturecloud_widget.php"); register_widget('scripturecloud_widget'); } 35 function scripturecloud_save( ) { scripturecloud_update_post($id); }35 function scripturecloud_save($id) { scripturecloud_update_post($id); } 36 36 37 37 ?> -
scripture-cloud/trunk/readme.txt
r436696 r438020 1 1 === Scripture Cloud === 2 2 Contributors: bhoogterp 3 Version: 1.0. 13 Version: 1.0.2 4 4 Donate link: http://www.churchofthebeyond.com/ 5 5 Tags: bible, widget, scripture, verse, passage, cloud 6 6 Requires at least: 3.2.1 7 7 Tested up to: 3.2.1 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 10 10 Creates a Scripture Cloud of referenced Bible verses in your blog. … … 35 35 1.0.0 Initial Version 36 36 1.0.1 Install issue fixed 37 1.0.2 Save issue fixed 37 38 38 39 == Upgrade Notice == 39 40 1.0.0 Installation! 41 1.0.2 Get it! 40 42 41 43 == Screenshots == -
scripture-cloud/trunk/scripturecloud.php
r436696 r438020 30 30 // Add our function to the widgets_init hook. 31 31 add_action('widgets_init', 'scripturecloud_load'); 32 add_action(' post_save', 'scripturecloud_save');32 add_action('save_post', 'scripturecloud_save'); 33 33 34 34 function scripturecloud_load() { include_once("scripturecloud_widget.php"); register_widget('scripturecloud_widget'); } 35 function scripturecloud_save( ) { scripturecloud_update_post($id); }35 function scripturecloud_save($id) { scripturecloud_update_post($id); } 36 36 37 37 ?>
Note: See TracChangeset
for help on using the changeset viewer.