Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv30723/public_html
Modified Files:
backend.php3
Log Message:
Killed IDX for RSS-1.0
Index: backend.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/backend.php3,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** backend.php3 19 Mar 2002 16:25:17 -0000 1.24
--- backend.php3 19 Mar 2002 16:48:06 -0000 1.25
***************
*** 184,190 ****
! // Grab a copy of the link stuff we need
if ($ary['view'] = 'rss1') {
! $link_ary[] = array('idx' => $i, 'storyid' => $stories[$i]["story_id"]);
}
--- 184,190 ----
! // Grab a copy of the link stuff we need for RSS-1.0
if ($ary['view'] = 'rss1') {
! $link_ary[] = array('storyid' => $stories[$i]["story_id"]);
}
***************
*** 197,202 ****
for ($i = 0; $i < count($link_ary); $i++) {
$template->set_var(array(
! 'STORY_ID' => $link_ary[$i]['storyid'],
! 'IDX' => $link_ary[$i]['idx']
));
$template->parse("items", "each_item", true);
--- 197,201 ----
for ($i = 0; $i < count($link_ary); $i++) {
$template->set_var(array(
! 'STORY_ID' => $link_ary[$i]['storyid']
));
$template->parse("items", "each_item", true);
|