diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-13 22:02:22 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-13 22:02:22 -0400 |
commit | 695651451b262c526d6aaf9d0988ce557ff50e95 (patch) | |
tree | 92afd91c81f851e78dd87af0e1f6c2f848f5a8b2 /views/default/tidypics/admin/thumbnails.php | |
parent | a2e4f84be4da51b7ec8fbe625b1b26dde2ad9289 (diff) | |
parent | 67d855d73499f36f15331e1ff18cccd13aa8aa74 (diff) | |
download | elgg-695651451b262c526d6aaf9d0988ce557ff50e95.tar.gz elgg-695651451b262c526d6aaf9d0988ce557ff50e95.tar.bz2 |
Merging admin changes from Brett's repo
Diffstat (limited to 'views/default/tidypics/admin/thumbnails.php')
-rw-r--r-- | views/default/tidypics/admin/thumbnails.php | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/views/default/tidypics/admin/thumbnails.php b/views/default/tidypics/admin/thumbnails.php deleted file mode 100644 index 5884b9dc3..000000000 --- a/views/default/tidypics/admin/thumbnails.php +++ /dev/null @@ -1,33 +0,0 @@ -<br /> -<h3>Overview</h3> -<p> -This page allows you to create thumbnails for images when the thumbnail creation failed during upload. -You may experience problems with thumbnail creation if your image library is not configured properly or -if there is not enough memory for the GD library to load and resize an image. If your users have -experienced problems with thumbnail creation and you have corrected your configuration, you can try to redo the -thumbnails. Find the unique identifier of the photo (it is the number near the end of the url when viewing -a photo) and enter it below. -</p> -<h3>Thumbnail Creation</h3> -<p> -<b><?php echo elgg_echo('tidypics:settings:im_id'); ?></b>: -<input name="image_id" type="text" /> -<input type="submit" value="Submit" onclick="TestThumbnailCreation();" /> -</p> -<div id="im_results"></div> -<script type="text/javascript"> -function TestThumbnailCreation() -{ - var image_id = $('input[name=image_id]').val(); - $("#im_results").html(""); - $.ajax({ - type: "GET", - url: "<?php echo $CONFIG->wwwroot . 'mod/tidypics/actions/admin/create_thumbnails.php'; ?>", - data: {guid: image_id}, - cache: false, - success: function(html){ - $("#im_results").html(html); - } - }); -} -</script>
\ No newline at end of file |