aboutsummaryrefslogtreecommitdiff
path: root/actions/admin/imtest.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/admin/imtest.php')
-rw-r--r--actions/admin/imtest.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/actions/admin/imtest.php b/actions/admin/imtest.php
deleted file mode 100644
index a58643d0e..000000000
--- a/actions/admin/imtest.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-/**
- * Tidypics ImageMagick Location Test
- *
- * Called through ajax. Not a registered Elgg action.
- */
-
-$location = $_GET['location'];
-
-$command = $location . "convert -version";
-
-$result = system($command, $return_val);
-
-if ($return_val == 0) {
- echo $result;
-} else {
- echo "Unable to run ImageMagick. Please check the path.";
-}