|
From: Paul S. O. <ps...@us...> - 2001-12-24 13:03:46
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv11909
Modified Files:
index.php
Log Message:
Updated for new category name constant
Index: index.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/index.php,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -r1.85 -r1.86
*** index.php 2001/12/16 18:53:44 1.85
--- index.php 2001/12/24 13:03:44 1.86
***************
*** 34,44 ****
//
! while( list($key, $value) = @each($images) )
! {
!
!
! }
!
! $viewcat = (!empty($HTTP_GET_VARS['viewcat'])) ? $HTTP_GET_VARS['viewcat'] : -1;
if( isset($HTTP_GET_VARS['mark']) || isset($HTTP_POST_VARS['mark']) )
--- 34,38 ----
//
! $viewcat = (!empty($HTTP_GET_VARS[POST_CAT_URL])) ? $HTTP_GET_VARS[POST_CAT_URL] : -1;
if( isset($HTTP_GET_VARS['mark']) || isset($HTTP_POST_VARS['mark']) )
***************
*** 281,285 ****
"CAT_ID" => $cat_id,
"CAT_DESC" => $category_rows[$i]['cat_title'],
! "U_VIEWCAT" => append_sid("index.$phpEx?viewcat=$cat_id"))
);
$gen_cat[$cat_id] = 1;
--- 275,279 ----
"CAT_ID" => $cat_id,
"CAT_DESC" => $category_rows[$i]['cat_title'],
! "U_VIEWCAT" => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
);
$gen_cat[$cat_id] = 1;
***************
*** 423,427 ****
"CAT_ID" => $cat_id,
"CAT_DESC" => $category_rows[$i]['cat_title'],
! "U_VIEWCAT" => append_sid("index.$phpEx?viewcat=$cat_id"))
);
$gen_cat[$cat_id] = 1;
--- 417,421 ----
"CAT_ID" => $cat_id,
"CAT_DESC" => $category_rows[$i]['cat_title'],
! "U_VIEWCAT" => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
);
$gen_cat[$cat_id] = 1;
|