Changeset 471310
- Timestamp:
- 12/05/2011 08:44:39 PM (14 years ago)
- Location:
- wp-facebook-applications
- Files:
-
- 4 edited
- 1 copied
-
tags/0.4.4 (copied) (copied from wp-facebook-applications/trunk)
-
tags/0.4.4/readme.txt (modified) (2 diffs)
-
tags/0.4.4/wp-fb-applications.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-fb-applications.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-facebook-applications/tags/0.4.4/readme.txt
r470326 r471310 5 5 Requires at least: 3.0 6 6 Tested up to: 3.3 7 Stable tag: 0.4. 37 Stable tag: 0.4.4 8 8 9 9 Create custom tabs for your Facebook pages, hosted on your WordPress blog. … … 63 63 == Changelog == 64 64 65 = 0.4.4 = 66 * Save Facebook App settings only for the plugin tabs, not for other custom post types 67 65 68 = 0.4.3 = 66 69 * Fix styling issue on admin page with WordPress 3.3 -
wp-facebook-applications/tags/0.4.4/wp-fb-applications.php
r470326 r471310 2 2 /* 3 3 Plugin Name: WP-Facebook applications 4 Version: 0.4. 34 Version: 0.4.4 5 5 Plugin URI: http://www.werewp.com/my-plugins/wp-facebook-applications/ 6 6 Description: Create custom tabs for your Facebook pages, hosted on your WordPress blog. … … 130 130 function werewp_save_details(){ 131 131 global $post; 132 133 update_post_meta($post->ID, 'appid', $_POST['appid']); 134 update_post_meta($post->ID, 'appsecret', $_POST['appsecret']); 135 update_post_meta($post->ID, 'fbcomments', $_POST['fbcomments']); 132 133 if ( $post->post_type == 'werewp_fbapp' ) { 134 update_post_meta($post->ID, 'appid', $_POST['appid']); 135 update_post_meta($post->ID, 'appsecret', $_POST['appsecret']); 136 update_post_meta($post->ID, 'fbcomments', $_POST['fbcomments']); 137 } 136 138 } 137 139 add_action( 'save_post', 'werewp_save_details' ); -
wp-facebook-applications/trunk/readme.txt
r470326 r471310 5 5 Requires at least: 3.0 6 6 Tested up to: 3.3 7 Stable tag: 0.4. 37 Stable tag: 0.4.4 8 8 9 9 Create custom tabs for your Facebook pages, hosted on your WordPress blog. … … 63 63 == Changelog == 64 64 65 = 0.4.4 = 66 * Save Facebook App settings only for the plugin tabs, not for other custom post types 67 65 68 = 0.4.3 = 66 69 * Fix styling issue on admin page with WordPress 3.3 -
wp-facebook-applications/trunk/wp-fb-applications.php
r470326 r471310 2 2 /* 3 3 Plugin Name: WP-Facebook applications 4 Version: 0.4. 34 Version: 0.4.4 5 5 Plugin URI: http://www.werewp.com/my-plugins/wp-facebook-applications/ 6 6 Description: Create custom tabs for your Facebook pages, hosted on your WordPress blog. … … 130 130 function werewp_save_details(){ 131 131 global $post; 132 133 update_post_meta($post->ID, 'appid', $_POST['appid']); 134 update_post_meta($post->ID, 'appsecret', $_POST['appsecret']); 135 update_post_meta($post->ID, 'fbcomments', $_POST['fbcomments']); 132 133 if ( $post->post_type == 'werewp_fbapp' ) { 134 update_post_meta($post->ID, 'appid', $_POST['appid']); 135 update_post_meta($post->ID, 'appsecret', $_POST['appsecret']); 136 update_post_meta($post->ID, 'fbcomments', $_POST['fbcomments']); 137 } 136 138 } 137 139 add_action( 'save_post', 'werewp_save_details' );
Note: See TracChangeset
for help on using the changeset viewer.