Index: trunk/themes/default/incs/inportal_main.css =================================================================== diff -u -r232 -r249 --- trunk/themes/default/incs/inportal_main.css (.../inportal_main.css) (revision 232) +++ trunk/themes/default/incs/inportal_main.css (.../inportal_main.css) (revision 249) @@ -782,7 +782,14 @@ border-width: 0 0 1 1; } +.debug_table TD, .debug_text { + color: #000000; + font-family: Arial, Helvetica; + font-size: 13px; +} + .debug_table TD { border: 1px solid green; border-width: 1 1 0 0; + } \ No newline at end of file Index: trunk/admin/install.php =================================================================== diff -u -r197 -r249 --- trunk/admin/install.php (.../install.php) (revision 197) +++ trunk/admin/install.php (.../install.php) (revision 249) @@ -258,6 +258,7 @@ if(!strlen($state)) $state = @$_POST["state"]; //echo $state; + if(strlen($state)==0) { $ado = inst_GetADODBConnection(); @@ -326,6 +327,7 @@ } } + if($state=="reinstall_process") { $lic = base64_decode($g_License); @@ -938,6 +940,7 @@ } $dir_name = $pathtoroot.$p."/admin/install/upgrades/"; + $dir = @dir($dir_name); //echo "
"; print_r($dir); echo "
"; @@ -961,7 +964,7 @@ } } } - + if ($install_type == '') { $install_type = 2; } Index: trunk/admin/include/style.css =================================================================== diff -u -r232 -r249 --- trunk/admin/include/style.css (.../style.css) (revision 232) +++ trunk/admin/include/style.css (.../style.css) (revision 249) @@ -442,7 +442,14 @@ border-width: 0 0 1 1; } +.debug_table TD, .debug_text { + color: #000000; + font-family: Arial, Helvetica; + font-size: 13px; +} + .debug_table TD { border: 1px solid green; border-width: 1 1 0 0; + } \ No newline at end of file Index: trunk/kernel/frontaction.php =================================================================== diff -u -r232 -r249 --- trunk/kernel/frontaction.php (.../frontaction.php) (revision 232) +++ trunk/kernel/frontaction.php (.../frontaction.php) (revision 249) @@ -11,7 +11,7 @@ $script = basename($_SERVER['PHP_SELF']); echo '
'; - echo "ScriptName: $script (".dirname($_SERVER['PHP_SELF']).")

"; + echo "
ScriptName: $script (".dirname($_SERVER['PHP_SELF']).")

"; echo ''; echo ''; Index: trunk/kernel/action.php =================================================================== diff -u -r235 -r249 --- trunk/kernel/action.php (.../action.php) (revision 235) +++ trunk/kernel/action.php (.../action.php) (revision 249) @@ -11,7 +11,7 @@ { // don't show debug output in tree & header of admin & while logging in $script = basename($_SERVER['PHP_SELF']); - $skip_debug = Array('index.php','tree.php','head.php'); + $skip_debug = Array('index.php','tree.php','head.php','credits.php'); if( !in_array($script, $skip_debug) ) { echo "ScriptName: $script (".dirname($_SERVER['PHP_SELF']).")

";
SrcNameValue