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 Reports


Go to End


297 Posts   102011 Views

Avatar
dospuntocero

Community Member, 54 Posts

20 March 2010 at 2:04am

@UncleCheese... im using 2.3.6 in that site and is not working either... not sure if that changes anything... btw.. how you use a specific version in subversion? im using just trunk (maybe something is different there... or dom is being compatible with 2.4 not 236?)
i will update to 237 now.

Avatar
UncleCheese

Forum Moderator, 4102 Posts

20 March 2010 at 3:46am

I've created a branch for 2.3.. Here's the URL:

svn co http://carlinowebdesign.svn.beanstalkapp.com/modules/branches/2.3/dataobject_manager

Please confirm that this version is working in 2.3? It's a copy of r375, so I can't imagine there will be any problems.

2.4 will remain on the trunk.

Working on the JS issues. Silverstripe upgraded to jQuery 1.4.2 in this latest beta, which is great news, but there will be some dependencies to negotiate now.

Thanks for your continued testing! It saves me a ton of time.

Avatar
splatEric

Community Member, 15 Posts

20 March 2010 at 3:54am

r375 resolves my drag and drop re-ordering problem, thanks a bunch UncleCheese you utter legend!

(at the risk of being off topic and being a PITA, could you point the way to a branch for the event module that works with 2.3.x as well - this is of course based on the assumption that it's a similar problem)

thanks again

Avatar
UncleCheese

Forum Moderator, 4102 Posts

20 March 2010 at 4:35am

You mean EventCalendar? That's not 2.3 compatible?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

20 March 2010 at 4:37am

Francisco, where is the SimpleTinyMCEField failing for you? How can I replicate the bug?

Avatar
splatEric

Community Member, 15 Posts

20 March 2010 at 5:01am

> You mean EventCalendar? That's not 2.3 compatible?

Sorry, should have tested before asking turns out the problem with DOM was also causing the problem with EventCalendar - it's now playing nice, thanks!

Avatar
gingersirup

Community Member, 1 Post

12 April 2010 at 12:16am

Hi UncleCheese,

fixed issue when searching uploaded files under "files & images" (AssetManager.php)
I attached a patch to the following ticket
http://open.silverstripe.org/ticket/5383

Greets

Avatar
Quarx

Community Member, 12 Posts

15 April 2010 at 12:52pm

I've just updated my ss to 2.4rc1 and also got the trunk version of DOM.
After the update to make it work I had to change the following (core/DataObjectManager.php:647):

foreach($this->parent->permissions as $perm) {

to:

$permissions = $this->parent->permissions;
foreach($permissions as $perm) {

Otherwise I had this: ERROR [Notice]: Indirect modification of overloaded property ManyManyDataObjectManager::$permissions has no effect

Go to Top