diff options
-rw-r--r-- | core/controllers/welcome.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php index c8b76a0f..4a3dacb4 100644 --- a/core/controllers/welcome.php +++ b/core/controllers/welcome.php @@ -59,10 +59,10 @@ class Welcome_Controller extends Template_Controller { print "<pre>$data"; } else { $proc = proc_open("/usr/bin/dot -Tsvg", - array(array("pipe", "r"), - array("pipe", "w")), - $pipes, - VARPATH . "tmp"); + array(array("pipe", "r"), + array("pipe", "w")), + $pipes, + VARPATH . "tmp"); fwrite($pipes[0], $data); fclose($pipes[0]); |