Browse Source

Merge pull request #10304 from tenkoma/dd-function-signature

The $showHtml argument of the dd function was not used
Mark Sch 9 years ago
parent
commit
fc31b35ea3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/basics.php

+ 1 - 1
src/basics.php

@@ -136,7 +136,7 @@ if (!function_exists('dd')) {
             'file' => $trace[0]['file']
         ];
 
-        Debugger::printVar($var, $location);
+        Debugger::printVar($var, $location, $showHtml);
         die(1);
     }
 }