Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

Bug in SVN


Go to End


1537 Views

Avatar
Gene

Community Member, 41 Posts

14 May 2009 at 5:48am

Line 70 of FileDataObjectManager.php is

if(property_exists("allowed_file_types", $SNG))

and should be

if(property_exists($SNG, "allowed_file_types"))

(the params are backwards)

Thanks for the great module!