Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv7244/public_html
Modified Files:
config.php3
Log Message:
fixes to make headers work with E_ALL
Modified Files:
CHANGES class/functions.inc class/slashSess.class
public_html/config.php3
Index: config.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v
retrieving revision 1.125
retrieving revision 1.126
diff -C2 -d -r1.125 -r1.126
*** config.php3 6 Feb 2002 20:47:14 -0000 1.125
--- config.php3 8 Feb 2002 18:54:04 -0000 1.126
***************
*** 173,182 ****
// should be prepended to all phpSlash pages
! $lang = false; // comment to enable setting lang in url
$_PSL['languagefile'] = $_PSL['localedir'] . "/" . $_PSL['language'] . ".php3";
! $_PSL['languagefile'] = setLang($lang); // comment to disable auto lang detection
! $_PSL['templatedir'] = setLangTpl($lang); // comment to disable auto tpl lang detection
$_PSL['defaultskin'] = "default";
! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie"); // comment to disable setting theme in url
// NavBar Menu Definitions
--- 173,196 ----
// should be prepended to all phpSlash pages
! // comment to enable setting lang in url
! $lang = false;
!
$_PSL['languagefile'] = $_PSL['localedir'] . "/" . $_PSL['language'] . ".php3";
!
! // comment to disable auto lang detection
! $_PSL['languagefile'] = setLang($lang);
!
! // comment to disable auto tpl lang detection
! $_PSL['templatedir'] = setLangTpl($lang);
!
! // Sets the default dkin for a site
$_PSL['defaultskin'] = "default";
!
! // comment out this block to disable setting theme in url
! if (!empty($HTTP_GET_VARS['skin'])) {
! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie");
! } else {
! $_PSL['templatedir'] = setSkinTpl("", "cookie");
! }
// NavBar Menu Definitions
|