diff options
| author | wjames5 <will@tekimaki.com> | 2009-05-13 23:09:09 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2009-05-13 23:09:09 +0000 |
| commit | 69ae15025f20c397e7697c6b45bfc88bcb65a3f8 (patch) | |
| tree | 51e17ed3f29d35cf722208a2690228134d6de9c7 /rss_inc.php | |
| parent | 9d8e9a8ecd85e96150d3b17e10b217cf234b8e56 (diff) | |
| download | rss-69ae15025f20c397e7697c6b45bfc88bcb65a3f8.tar.gz rss-69ae15025f20c397e7697c6b45bfc88bcb65a3f8.tar.bz2 rss-69ae15025f20c397e7697c6b45bfc88bcb65a3f8.zip | |
quick patch to rss explout - set default rss_version_name if not none matches on switch
Diffstat (limited to 'rss_inc.php')
| -rw-r--r-- | rss_inc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rss_inc.php b/rss_inc.php index e0e8b1a..dd4466d 100644 --- a/rss_inc.php +++ b/rss_inc.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_rss/rss_inc.php,v 1.13 2008/06/30 19:29:17 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_rss/rss_inc.php,v 1.14 2009/05/13 23:09:09 wjames5 Exp $ * @package rss * @subpackage functions */ @@ -93,6 +93,9 @@ switch( $version ) { case "js": $rss_version_name = "JS"; break; + default: + $rss_version_name = "RSS0.91"; + break; } ksort( $gBitUser->mGroups ); |
