fix issue #2617
simply adds the $_FILES array to profiler output of POST data
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php
index 9e9e7d0..80130eb 100644
--- a/system/libraries/Profiler.php
+++ b/system/libraries/Profiler.php
@@ -338,7 +338,7 @@
."\n"
.'<legend style="color:#009900;"> '.$this->CI->lang->line('profiler_post_data')." </legend>\n";
- if (count($_POST) === 0)
+ if (count($_POST) === 0 AND count($_FILES) === 0)
{
$output .= '<div style="color:#009900;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_post').'</div>';
}
@@ -368,9 +368,29 @@
$output .= "</td></tr>\n";
}
+ foreach ($_FILES as $key => $val)
+ {
+ if ( ! is_numeric($key))
+ {
+ $key = "'".$key."'";
+ }
+
+ $output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">$_FILES['
+ .$key.'] </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">';
+
+ if (is_array($val) OR is_object($val))
+ {
+ $output .= '<pre>'.htmlspecialchars(stripslashes(print_r($val, TRUE))).'</pre>';
+ }
+
+ $output .= "</td></tr>\n";
+ }
+
$output .= "</table>\n";
}
+
+
return $output.'</fieldset>';
}