web/wp-content/plugins/social/views/wp-admin/post/meta/broadcast/default.php
changeset 196 5e8dcbe22c24
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/social/views/wp-admin/post/meta/broadcast/default.php	Tue Dec 04 18:43:10 2012 -0800
@@ -0,0 +1,10 @@
+<div class="misc-pub-section">
+	<h4 class="mar-top-none"><?php _e('Broadcast Post', 'social'); ?></h4>
+	<p>
+		<input type="radio" name="social_notify" id="social_notify_yes" value="1"<?php checked(true, (bool) ($notify and $post->post_status != 'private'), true); disabled('private', $post->post_status, true); ?> />
+		<label for="social_notify_yes" class="social-toggle-label"><?php _e('Yes', 'social'); ?></label>
+	
+		<input type="radio" name="social_notify" id="social_notify_no" value="0"<?php checked(true, (bool) (!$notify or $post->post_status == 'private'), true); disabled('private', $post->post_status, true); ?> />
+		<label for="social_notify_no" class="social-toggle-label"><?php _e('No', 'social'); ?></label>
+	</p>
+</div>
\ No newline at end of file