UncleCheese,
I ran into the following situation today on SS2.4.2 and the latest Uploadify (I think r510):
Photo.php
<?php
class Photo extends Image {
static $has_one = array (
'Page' => 'Page'
);
}
?>
Page.php
...
public static $has_many = array(
'Photos' => 'Photo'
);
...
$fields->addFieldToTab('Root.Content.'._t('CMS.PHOTOS','Photos'), $miuf = new MultipleImageUploadField('Photos',_t('CMS.CONTENT_PHOTOS','Content photos')));
...
Situation:
1. In CMS open page 'home' and upload new image using uploadify
2. Check front-end: image perfectly visible
3. Back in CMS open page 'about us' and import the same image using 'Choose existing'
4. Check front-end: image perfectly visible, BUT no longer on page 'home'. Also in CMS the image is gone on page 'home'