Index: trunk/kernel/include/usersession.php =================================================================== diff -u -r267 -r269 --- trunk/kernel/include/usersession.php (.../usersession.php) (revision 267) +++ trunk/kernel/include/usersession.php (.../usersession.php) (revision 269) @@ -40,7 +40,8 @@ { //echo "with cookies"; if( !isset($_SERVER['HTTP_REFERER']) ) $_SERVER['HTTP_REFERER'] = ''; - + if(!isset($_GET['destform'])) $_GET['destform'] = null; + if(!isset($_GET['continue_sess'])) $_GET['continue_sess'] = null; if( strlen($id) && (strstr($_SERVER['HTTP_REFERER'], $_SERVER['SERVER_NAME'].$objConfig->Get("Site_Path")) || $_GET['destform'] == 'popup' || $_GET['continue_sess'] == 1)) { $this->Set("SessionKey",$id); Index: trunk/admin/include/style.css =================================================================== diff -u -r264 -r269 --- trunk/admin/include/style.css (.../style.css) (revision 264) +++ trunk/admin/include/style.css (.../style.css) (revision 269) @@ -458,4 +458,12 @@ border: 1px solid green; border-width: 1 1 0 0; +} + +.debug_layer { + position: relative; + overflow: auto; + + height: 300px; + width: 600px; } \ No newline at end of file Index: trunk/kernel/action.php =================================================================== diff -u -r267 -r269 --- trunk/kernel/action.php (.../action.php) (revision 267) +++ trunk/kernel/action.php (.../action.php) (revision 269) @@ -15,6 +15,9 @@ if( !in_array($script, $skip_debug) ) { echo "ScriptName: $script (".dirname($_SERVER['PHP_SELF']).")

"; + $div_height = (count($_REQUEST)+1)*26; + if($div_height > 300) $div_height = 300; + echo '
'; echo ''; echo ''; @@ -24,7 +27,7 @@ $src = isset($_GET[$key]) ? 'GE' : (isset($_POST[$key]) ? 'PO' : (isset($_COOKIE[$key]) ? 'CO' : '?') ); echo ''; } - echo '
SrcNameValue
'.$src.''.$key.''.print_r($value, true).'
'; + echo '
'; } unset($script, $skip_debug); }