Plugin Directory

Changeset 335118


Ignore:
Timestamp:
01/20/2011 03:37:01 PM (15 years ago)
Author:
pretzlaff
Message:

fix html parser

Location:
xxternal-rss/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • xxternal-rss/trunk/changelog

    r334835 r335118  
     1
     2Version: 0.1.10
     3================
     4
     5    * Fix HTML Parser
    16
    27Version: 0.1.9
  • xxternal-rss/trunk/index.php

    r334835 r335118  
    44Plugin URI: http://www.pretzlaff.info/wp/wordpress-plugins/xxternal-rss
    55Description: Include external RSS-Feed and now Google-Reader Feeds into Page/Post per simple tag. Install, config and insert simple tag into your post or site, That's all
    6 Version: 0.1.9
     6Version: 0.1.10
    77Author: Ruediger Pretzlaff
    88Author URI: http://www.pretzlaff.info
     
    1010# if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
    1111
    12 define('externalrssversion',  "0.1.9");
     12define('externalrssversion',  "0.1.10");
    1313define('externalrssauthor',   "Ruediger Pretzlaff");
    1414define('externalrssemail',    "ruediger@pretzlaff.info");
    1515define('externalrssurl',      "http://www.pretzlaff.info/wp/wordpress-plugins/xxternal-rss/");
    1616define('externalrssdate',     "Thu Jan 20 00:46:33 CET 2011");
    17 define('externalrssbuild',    "#134");
     17define('externalrssbuild',    "#135");
    1818
    1919if ( !defined('ABSPATH') ) { die('You are not allowed to call this page directly.'); }
     
    108108          $dest = str_replace('[AUTOR]','<strong><em>',str_replace('[/AUTOR]','</em></strong>',str_replace('<![CDATA[','',str_replace(']]','',$array_description[1]))));       
    109109          $dest = str_replace('[...]>','',$dest);
     110          $dest = str_replace('&lt;','<',$dest);
     111          $dest = str_replace('&gt;','>',$dest);
     112          $dest = str_replace('&amp;','"',$dest);
    110113          $msg .= $dest;
    111114        }
  • xxternal-rss/trunk/readme.txt

    r334835 r335118  
    55Requires at least: 2.1
    66Tested up to: 3.1
    7 Stable tag: 0.1.9
     7Stable tag: 0.1.10
    88
    99Include external RSS-Feed into your posts and pages and now to sidebar.
     
    1111== Description ==
    1212
    13 0.1.9
    14   * new Option Debug mode
    15   * new Admin Design
    16   * Fix Count Items Problem,
    17 
    18 
    19 * 0.1.8.11 new Option Show PubDate
    20 * ABSPATH is not defined die and post 'You are not allowed to call this page directly.'
    21 * 0.1.8.9 add languages: fr, es, it, en, de
     130.1.10
     14  * fix html parser
    2215
    2316
Note: See TracChangeset for help on using the changeset viewer.