Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv15231/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Fix a bug with the javascript url argument separator
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** main_index.lib.php3 2001/04/28 15:42:02 1.24
--- main_index.lib.php3 2001/04/28 21:04:20 1.25
***************
*** 455,459 ****
var jsFrom = '<?php echo($GLOBALS['dbSessionVars']['from']); ?>';
var jsLang = '<?php echo($GLOBALS['dbSessionVars']['lang']); ?>';
! var jsUrlArgSeparator = '<?php echo($GLOBALS['pmcQueryArgSeparator']); ?>';
var jsIsDOM = (typeof(document.getElementById) != 'undefined') ? 1 : 0;
--- 455,459 ----
var jsFrom = '<?php echo($GLOBALS['dbSessionVars']['from']); ?>';
var jsLang = '<?php echo($GLOBALS['dbSessionVars']['lang']); ?>';
! var jsUrlArgSeparator = '<?php echo(($GLOBALS['pmcQueryArgSeparator'] == '&') ? '&' : $GLOBALS['pmcQueryArgSeparator']); ?>';
var jsIsDOM = (typeof(document.getElementById) != 'undefined') ? 1 : 0;
|