Plugin Directory

Changeset 436028


Ignore:
Timestamp:
09/10/2011 09:25:40 AM (14 years ago)
Author:
linickx
Message:

Fixing Trac Ticket #1370

Location:
phpbb-recent-topics/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • phpbb-recent-topics/trunk/display/admin-options.php

    r404005 r436028  
    237237<ul>
    238238<?php
    239     foreach ($lnx_feed->get_items() as $item){
    240         printf('<li><a href="%s">%s</a></li>',$item->get_permalink(), $item->get_title());
     239    if (isset($lnx_lifestream_feed->errors)) {
     240        echo '<li><b>Error Downloading Feed</b>. Looks like you are going to have to visit <a href="http://www.linickx.com/tag/phpbb_recent_topics/">www.linickx.com/tag/phpbb_recent_topics</a> manually to keep up with the news! </li>';
     241    } else {
     242        foreach ($lnx_feed->get_items() as $item){
     243            printf('<li><a href="%s">%s</a></li>',$item->get_permalink(), $item->get_title());
     244        }
    241245    }
    242246    ?>
  • phpbb-recent-topics/trunk/phpbb_recent_topics.php

    r404190 r436028  
    44     Plugin URI: http://www.linickx.com/3311/phpbb_recent_topics-version-0-7
    55     Description: This plugin grabs your recent phpBB topics for you to display in wordpress.
    6      Version: 0.7.1
     6     Version: 0.7.2
    77     Author: Nick [LINICKX] Bettison
    88     Author URI: http://www.linickx.com
  • phpbb-recent-topics/trunk/readme.txt

    r406718 r436028  
    44Tags: phpBB, forum, topics, sidebar, posts
    55Requires at least: 2.0.9
    6 Tested up to: 3.2
     6Tested up to: 3.2.1
    77Stable tag: 0.7.1
    88
     
    9595
    9696== Changelog ==
     97
     98= 0.7.2 =
     99* News feed error handling Trac Ticket #1370
    97100
    98101= 0.7.1 =
Note: See TracChangeset for help on using the changeset viewer.