summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-02-23 01:36:54 +0000
committerBharat Mediratta <bharat@menalto.com>2009-02-23 01:36:54 +0000
commit37d3254d8c379e5f83497fd3eab55f10a60ee93f (patch)
tree58439341d0a8778ef0e21288cc40c24a8ff11a20 /core/helpers
parent7d96448ecbf0c7d24bf851db13d1b81bb726024e (diff)
Remove debug code, thanks Andrew Slayman!
Diffstat (limited to 'core/helpers')
-rw-r--r--core/helpers/graphics.php2
-rw-r--r--core/helpers/movie.php1
2 files changed, 0 insertions, 3 deletions
diff --git a/core/helpers/graphics.php b/core/helpers/graphics.php
index f120bd50..8418bd6b 100644
--- a/core/helpers/graphics.php
+++ b/core/helpers/graphics.php
@@ -154,8 +154,6 @@ class graphics_Core {
self::init_toolkit();
}
- printf("<pre>%s</pre>",print_r(array($input_file, $output_file, $options),1));flush();
-
Image::factory($input_file)
->resize($options["width"], $options["height"], $options["master"])
->save($output_file);
diff --git a/core/helpers/movie.php b/core/helpers/movie.php
index 3e98b1f0..4cd2e550 100644
--- a/core/helpers/movie.php
+++ b/core/helpers/movie.php
@@ -115,7 +115,6 @@ class movie_Core {
$cmd = escapeshellcmd($ffmpeg) . " -i " . escapeshellarg($input_file) .
" -t 0.001 -y -f mjpeg " . escapeshellarg($output_file);
- printf("<pre>%s</pre>",print_r($cmd,1));flush();
exec($cmd);
}
}