I had the same repeater problem that Soma reported some time ago. Following changes to ProcessCropImage.module got it working:
$this->setFuel('processHeadline', 'Crop images');
+ $field = $this->input->get->field;
+ if (preg_match("/_repeater[0-9]+$/", $field)) {
+ $pages_id = (int) end(explode("_repeater", $field));
+ $field = str_replace("_repeater$pages_id", "", $field);
+ } else {
$pages_id = (int) $this->input->get->pages_id;
+ }
$filename = $this->input->get->filename;
- $field = $this->input->get->field;
$height = $this->input->get->height;
$width = $this->input->get->width;
$prefix = $this->input->get->prefix;
This is a bit of a hack and I haven't even tested it properly, so I'm definitely not saying that anyone should use the same method -- but it worked for me