Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv28352/chat/lib/index_libs
Modified Files:
do_enter_frameset.lib.php3
Log Message:
Fix an nasty bug related to the netscape resize bug
Index: do_enter_frameset.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_frameset.lib.php3,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** do_enter_frameset.lib.php3 2001/05/04 16:26:28 1.10
--- do_enter_frameset.lib.php3 2001/05/05 09:54:58 1.11
***************
*** 31,39 ****
$nsResizeUrl = $dbSessionVars['from']
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=0'
. $pmcQueryArgSeparator . 'reloading=nsResize';
// The height of the input frame
// = (row height * 2) + 5 for a little row used as separator + margins
! $inputHeight = ($dbSessionVars['rowHeight'] * 2) + 30;
--- 31,40 ----
$nsResizeUrl = $dbSessionVars['from']
. '?' . dbSessionSID('GET')
+ . $pmcQueryArgSeparator . 'rowHeight=' . $rowHeight
. $pmcQueryArgSeparator . 'exitMessage=0'
. $pmcQueryArgSeparator . 'reloading=nsResize';
// The height of the input frame
// = (row height * 2) + 5 for a little row used as separator + margins
! $inputHeight = ($rowHeight * 2) + 30;
***************
*** 45,49 ****
{
?>
! <frameset cols="100%,*,*" frameborder="0" border="0" framespacing="0" onresize="if (jsIsNS4) window.location = '<?php echo($nsResizeUrl); ?>';">
<!-- Visible framesets -->
--- 46,50 ----
{
?>
! <frameset cols="100%,*,*" frameborder="0" border="0" framespacing="0" onresize="if (jsIsNS4) window.location.replace('<?php echo($nsResizeUrl); ?>')">
<!-- Visible framesets -->
|