Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv17056/phpslash-ft/public_html
Modified Files:
index.php3 indextpl3col.php3
Log Message:
BREADCRUMB variable
Index: index.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** index.php3 2001/11/13 22:01:27 1.48
--- index.php3 2001/11/28 17:49:56 1.49
***************
*** 34,38 ****
}
! $allstories = breadcrumb( $ary);
$_PSL['metatags']['object'] = $xsiteobject;
--- 34,39 ----
}
!
! $breadcrumb = breadcrumb( $ary);
$_PSL['metatags']['object'] = $xsiteobject;
***************
*** 40,44 ****
slashhead($pagetitle,$_PSL['metatags']);
! $allstories .= $story->getStories($ary);
$allblocks = $block->getBlocks($ary);
--- 41,45 ----
slashhead($pagetitle,$_PSL['metatags']);
! $allstories = $story->getStories($ary);
$allblocks = $block->getBlocks($ary);
***************
*** 52,55 ****
--- 53,57 ----
ROOTDIR => $_PSL[rooturl],
IMAGEDIR => $_PSL[imageurl],
+ BREADCRUMB => $breadcrumb,
STORY_COLUMN => $allstories,
BLOCK_COLUMN => $allblocks
Index: indextpl3col.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/indextpl3col.php3,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** indextpl3col.php3 2001/09/06 17:18:22 1.10
--- indextpl3col.php3 2001/11/28 17:49:56 1.11
***************
*** 35,39 ****
$rightblocks = $rightblocks;
! $leftblocks = breadcrumb($ary);
$allstories .= $story->getStories($ary);
--- 35,39 ----
$rightblocks = $rightblocks;
! $breadcrumb = breadcrumb($ary);
$allstories .= $story->getStories($ary);
***************
*** 50,53 ****
--- 50,54 ----
ROOTDIR => $_PSL[rootdir],
IMAGEDIR => $_PSL[imagedir],
+ BREADCRUMB => $breadcrumb,
STORY_COLUMN => $allstories,
LEFT_BLOCK_COLUMN => $leftblocks,
|