blob: 4ec93ff9ecfd1324f1826997f0074291d71dfcf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* smarty_function_rss
*/
function smarty_function_rss($params, &$gBitSmarty) {
global $gLibertySystem;
include_once( LIBERTY_PKG_PATH.'plugins/data.rss.php' );
$feed = rss_parse_data("", $params);
print $feed;
}
?>
|