Revision: 190
Author: astronouth7303
Date: 2006-06-22 18:58:25 -0700 (Thu, 22 Jun 2006)
ViewCVS: http://svn.sourceforge.net/openfirst/?rev=190&view=rev
Log Message:
-----------
Changing link target back to what it was. See bug #271.
Modified Paths:
--------------
trunk/src/news/rss/rss.php
Modified: trunk/src/news/rss/rss.php
===================================================================
--- trunk/src/news/rss/rss.php 2006-06-23 01:28:43 UTC (rev 189)
+++ trunk/src/news/rss/rss.php 2006-06-23 01:58:25 UTC (rev 190)
@@ -80,7 +80,7 @@
$query = $ogDB->select('news', '*', false, array('order' => 'post_date', 'dir' => 'DESC', 'LIMIT' => $limit));
while($news = $ogDB->fetchObject($query)){
- $about = $link = $ogServer.$ogBasePath.'/news/viewnews.php?ID='.$news->ID;
+ $about = $link = $ogServer.$ogBasePath.'/news/readnews.php?ID='.$news->ID;
$title = strip_tags($news->title);
$description = html_entity_decode(strip_tags($news->news));
$subject = (string) ''; // optional DC value
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|