Changeset 866
- Timestamp:
- 08/31/08 14:10:00 (3 months ago)
- Files:
-
- 1 modified
-
plugins/podcast/trunk/podcast.plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/podcast/trunk/podcast.plugin.php
r865 r866 180 180 public function action_form_publish($form, $post) 181 181 { 182 if( $post->content_type === Post::type('podcast') ) {182 if( $form->content_type->value == Post::type('podcast') ) { 183 183 $feeds = Options::get('podcast__feeds'); 184 184 $output = ''; … … 205 205 public function action_publish_post($post, $form) 206 206 { 207 if( $post->content_type === Post::type( 'podcast' ) ) { 208 Utils::debug( $form->get_values()); 207 if( $post->content_type == Post::type( 'podcast' ) ) { 209 208 $feeds = Options::get('podcast__feeds'); 210 209 foreach($feeds as $feed => $feedtype) {
