[Phpslash-commit] CVS: phpslash-dev/public_html config-dist.php,1.25,1.26
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-10-01 18:07:33
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30676/phpslash-dev/public_html Modified Files: config-dist.php Log Message: changed url skin change from url to not set cookie unless cookie argument also set. Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** config-dist.php 20 Sep 2004 16:16:37 -0000 1.25 --- config-dist.php 1 Oct 2004 18:07:22 -0000 1.26 *************** *** 225,232 **** // comment out this block to disable setting theme in url if (!empty($HTTP_GET_VARS['skin'])) { ! if (empty($HTTP_GET_VARS['nocookie'])) { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie"); } else { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], ""); } } else { --- 225,232 ---- // comment out this block to disable setting theme in url if (!empty($HTTP_GET_VARS['skin'])) { ! if (empty($HTTP_GET_VARS['cookie'])) { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], ""); } else { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie"); } } else { |