Changeset 348238
- Timestamp:
- 02/20/2011 05:29:43 PM (15 years ago)
- Location:
- sfce-create-event/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
sfce-create-event.php (modified) (1 diff)
-
sfce-settings-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sfce-create-event/trunk/readme.txt
r347304 r348238 6 6 Requires at least: 2.7 7 7 Tested up to: 3.0.4 8 Stable tag:3.95. 48 Stable tag:3.95.5 9 9 10 10 Create Facebook events automatically when you create Wordpress posts. This plugin requires the Simple Facebook Connect plugin by Otto. -
sfce-create-event/trunk/sfce-create-event.php
r347304 r348238 2 2 /* 3 3 Plugin Name: SFCe - Create Event 4 Version: 3.95. 44 Version: 3.95.5 5 5 Author: Roger Howorth 6 6 Author URI: http://www.thehypervisor.com -
sfce-create-event/trunk/sfce-settings-page.php
r347304 r348238 18 18 { 19 19 if ( !wp_verify_nonce ( $_POST['verify-key'], 'sfce_event') ) die(__('Failed security check. Reload page and retry', 'sfce-create-event')); 20 if ( $_POST['sfce_event_privacy_visible'] && ( $_POST['sfce_event_privacy'] <> 'OPEN' ||$_POST['sfce_event_privacy'] <> 'CLOSED' )) $error .= 'You must provide a Privacy setting if you want to hide this option. Acceptable settings are OPEN or CLOSED.<p>';20 if ( $_POST['sfce_event_privacy_visible'] && ( $_POST['sfce_event_privacy'] <> 'OPEN' && $_POST['sfce_event_privacy'] <> 'CLOSED' )) $error .= 'You must provide a Privacy setting if you want to hide this option. Acceptable settings are OPEN or CLOSED.<p>'; 21 21 if ( $_POST['sfce_event_start_hour_visible'] && $_POST['sfce_event_start_hour'] == '' ) $error .= 'You must provide a Start Hour if you want to hide this option.<p>'; 22 22 if ( $_POST['sfce_event_start_min_visible'] && $_POST['sfce_event_start_min'] == '' ) $error .= 'You must provide a Start Minute if you want to hide this option.<p>';
Note: See TracChangeset
for help on using the changeset viewer.