aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/type/Default.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'type/Default.class.php')
-rw-r--r--type/Default.class.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/type/Default.class.php b/type/Default.class.php
index 0b6601e..fd562b4 100644
--- a/type/Default.class.php
+++ b/type/Default.class.php
@@ -161,6 +161,12 @@ class Type_Default {
161 header("content-type: image/png"); 161 header("content-type: image/png");
162 $graphdata = implode(' ', $graphdata); 162 $graphdata = implode(' ', $graphdata);
163 echo `$graphdata`; 163 echo `$graphdata`;
164 } elseif ($debug == 'cmd') {
165 print '<pre>';
166 foreach ($graphdata as $d) {
167 printf("%s \\\n", $d);
168 }
169 print '</pre>';
164 } else { 170 } else {
165 print '<pre>'; 171 print '<pre>';
166 print_r($graphdata); 172 print_r($graphdata);