[Phpslash-commit] CVS: phpslash-ft/public_html index.php3,1.56,1.57
Brought to you by:
joestewart,
nhruby
From: nathan h. <nh...@us...> - 2002-05-05 17:23:54
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory usw-pr-cvs1:/tmp/cvs-serv30250/public_html Modified Files: index.php3 Log Message: slight change to index for sligle quotes Index: index.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** index.php3 25 Mar 2002 16:45:52 -0000 1.56 --- index.php3 5 May 2002 17:23:51 -0000 1.57 *************** *** 1,10 **** <?php // $Id$ ! $pagetitle = "Home"; // The name to be displayed in the header ! $xsiteobject = "Home Page"; // This Defines The META Tag Object Type ! require("config.php3"); ! page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm")); if(!empty($HTTP_GET_VARS['login'])) { --- 1,12 ---- <?php // $Id$ ! $pagetitle = 'Home'; // The name to be displayed in the header ! $xsiteobject = 'Home Page'; // This Defines The META Tag Object Type ! require('config.php3'); ! page_open(array('sess' => 'slashSess', ! 'auth' => 'slashAuth', ! 'perm' => 'slashPerm')); if(!empty($HTTP_GET_VARS['login'])) { *************** *** 35,39 **** ! $breadcrumb = breadcrumb( $ary); $_PSL['metatags']['object'] = $xsiteobject; --- 37,41 ---- ! $breadcrumb = breadcrumb($ary); $_PSL['metatags']['object'] = $xsiteobject; *************** *** 41,47 **** slashhead($pagetitle,$_PSL['metatags']); ! $allstories = $story->getStories($ary); ! $leftblocks = $block->getBlocks($ary, "left"); ! $centerblocks = $block->getBlocks($ary, "center"); $rightblocks = $block->getBlocks($ary, "right"); --- 43,49 ---- slashhead($pagetitle,$_PSL['metatags']); ! $allstories = $story->getStories($ary); ! $leftblocks = $block->getBlocks($ary, "left"); ! $centerblocks = $block->getBlocks($ary, "center"); $rightblocks = $block->getBlocks($ary, "right"); *************** *** 52,63 **** // default to 2 column for transparent upgrade $rightblocks = $block->getBlocks($ary); ! $tplfile = "index2colright.tpl"; } else { ! $tplfile = "index2colright.tpl"; } } elseif (empty($rightblocks)) { ! $tplfile = "index2colleft.tpl"; } else { ! $tplfile = "index3col.tpl"; } --- 54,65 ---- // default to 2 column for transparent upgrade $rightblocks = $block->getBlocks($ary); ! $tplfile = 'index2colright.tpl'; } else { ! $tplfile = 'index2colright.tpl'; } } elseif (empty($rightblocks)) { ! $tplfile = 'index2colleft.tpl'; } else { ! $tplfile = 'index3col.tpl'; } *************** *** 70,74 **** // TODO register_globals? if( !empty($QUERY_STRING)) { ! $QUERY_STRING = "?".$QUERY_STRING; } --- 72,76 ---- // TODO register_globals? if( !empty($QUERY_STRING)) { ! $QUERY_STRING = '?'.$QUERY_STRING; } *************** *** 84,88 **** )); ! $template->parse('OUT',"index"); $template->p('OUT'); --- 86,90 ---- )); ! $template->parse('OUT','index'); $template->p('OUT'); |