Closed (fixed)
Project:
D7 Media
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Nov 2012 at 11:28 UTC
Updated:
6 Dec 2012 at 17:00 UTC
Jump to comment: Most recent file
Comments
Comment #1
ParisLiakos commentedwhich file_entity version you have?
Comment #2
greenwork commentedI got this too with 7.x-2.0-unstable7+2-dev File Entity after install
Comment #3
ParisLiakos commentedYeap, i just made a commit there that swaps the constant with a variable.
need to convert it in media module as well
something like this
http://drupalcode.org/project/file_entity.git/blobdiff/3779389cffdbb49a0...
Comment #4
mrfelton commentedComment #5
ParisLiakos commentedthanks a lot mrfelton
http://drupalcode.org/project/media.git/commit/9eeac2e
Comment #6
jpstrikesback commentedThere was one place this is called in media.module, patch attached with a
variable_get('file_entity_default_allowed_extensions')seems to sort it out.Comment #7
ParisLiakos commentedNice catch jpstrikesback!
But maybe we should use media_variable_get for consistency
Comment #8
mrfelton commented> maybe we should use media_variable_get for consistency
No that doesn't make sense here - we are trying to compare against the value provided by file_entity, not the value of one of media's variables. I think the above patch is correct, although the standard is to include the default value in the vall to variable_get. Patch updated.
Comment #9
jpstrikesback commentedAnd good catch on the default value, wasn't sure if it was needed but it can only help.
Comment #10
ParisLiakos commentedAh, i am sorry, i didnt notice the context
You are right thanks again
Comment #11
ParisLiakos commentedhttp://drupalcode.org/project/media.git/commit/9d12eb6
Thanks both!