• FeedWordPress used in conjunction with HTML Editor Syntax Highlighter plugin can not unsubscribe from feeds. The reason is that a <form> element is not closed by a </form> tag. This enables html-editor-syntax-highlighter’s <input> tag in the form.

    This patch fixed the problem.

    Thanks.

    
    --- feedwordpresssyndicationpage.class.php.orig 2018-03-01 12:10:06.012224731 +0900
    +++ feedwordpresssyndicationpage.class.php      2018-03-07 21:03:54.890396542 +0900
    @@ -944,6 +944,7 @@
            <input class="delete" type="submit" name="submit" value="<?php _e(FWP_UNSUB_FULL) ?>" />
            </div>          
            </div>                  
    +       </form>                 
            <?php                           
                            return false; // Don't continue on to Syndicated Sites listing
                    endif;  
    @@ -1059,6 +1060,7 @@
            <input class="button-primary delete" type="submit" name="submit" value="<?php _e('Re-subscribe to selected feeds &raquo;') ?>" />
            </div>                  
            </div>                  
    +       </form>                         
            <?php                           
                            return false; // Don't continue on to Syndicated Sites listing
                    endif;      
    
  • The topic ‘Can not unsubscribe from feeds’ is closed to new replies.