diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-07-31 19:38:29 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-07-31 19:38:29 +0000 |
commit | 1d3b83e6791b1e9e3386bb79937ef58240ba94ba (patch) | |
tree | b90b7ff2fdf45cfc8c9924d30e1fde914d80f247 /views/default/tidypics/admin | |
parent | a1f08342c8b8502197159a9fd78e48e6cead4ea0 (diff) | |
download | elgg-1d3b83e6791b1e9e3386bb79937ef58240ba94ba.tar.gz elgg-1d3b83e6791b1e9e3386bb79937ef58240ba94ba.tar.bz2 |
moved some actions into the admin directory
Diffstat (limited to 'views/default/tidypics/admin')
-rw-r--r-- | views/default/tidypics/admin/imagelib.php | 2 | ||||
-rw-r--r-- | views/default/tidypics/admin/thumbnails.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/views/default/tidypics/admin/imagelib.php b/views/default/tidypics/admin/imagelib.php index a0d0c19e7..2b7a3a7b0 100644 --- a/views/default/tidypics/admin/imagelib.php +++ b/views/default/tidypics/admin/imagelib.php @@ -51,7 +51,7 @@ if (get_plugin_setting('tagging', 'tidypics') != "disabled") $("#im_results").html(""); $.ajax({ type: "GET", - url: "<?php echo $CONFIG->wwwroot . 'mod/tidypics/actions/imtest.php'; ?>", + url: "<?php echo $CONFIG->wwwroot . 'mod/tidypics/actions/admin/imtest.php'; ?>", data: {location: loc}, cache: false, success: function(html){ diff --git a/views/default/tidypics/admin/thumbnails.php b/views/default/tidypics/admin/thumbnails.php index 960028fb9..5884b9dc3 100644 --- a/views/default/tidypics/admin/thumbnails.php +++ b/views/default/tidypics/admin/thumbnails.php @@ -22,7 +22,7 @@ function TestThumbnailCreation() $("#im_results").html(""); $.ajax({ type: "GET", - url: "<?php echo $CONFIG->wwwroot . 'mod/tidypics/actions/create_thumbnails.php'; ?>", + url: "<?php echo $CONFIG->wwwroot . 'mod/tidypics/actions/admin/create_thumbnails.php'; ?>", data: {guid: image_id}, cache: false, success: function(html){ |