After installing views 3.2 i get the following error, when trying to login:

Fatal error: Call to undefined function language_fallback_get_candidates() in modules/views/modules/field/views_handler_field_field.inc on line 210

CommentFileSizeAuthor
#14 1450268.patch890 bytesdawehner
#12 1450268.patch888 bytesdawehner
#5 1450268-fast.patch826 bytesdawehner
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

mhahndl’s picture

same here

3rdLOF’s picture

Third

mhahndl’s picture

3rdLOF’s picture

I try applying that patch, but fails.

dawehner’s picture

Status: Active » Fixed
FileSize
826 bytes

That's indeed quite critical. So probably there is a need for 3.3
I committed this patch to 7.x

das-peter’s picture

I'd say this makes absolutely sense :)

kevin.klika’s picture

That patch doesnt make sense to me.
Also, unzipped new module over the broken release, and cleared caches -- no fix.

dawehner’s picture

Why does this patch no sense for you?

a.siebel’s picture

The patch didn't solve the problem for me. I habe locale enabled and the error still occurs. (with views 3.3)

I completly removed the if clause and always set
> $language_fallback_candidates[] = LANGUAGE_NONE;
as temporary solution.

a.siebel’s picture

Status: Fixed » Active

I mark this issue as active (see #9)

das-peter’s picture

Oh boy, Daniel will hate me for this :|
Looks like what we really need is require_once DRUPAL_ROOT . '/includes/language.inc';
As language_fallback_get_candidates() resides in this include file an not in the locale module.
The locale module just uses this file too, thus if the locale module handles language fallback stuff before views does the file is already included. But if views comes first we're in a mess.

Could someone who experiences this error try and add this line before the call of language_fallback_get_candidates()?
Feedback appreciated!

dawehner’s picture

Status: Active » Needs review
FileSize
888 bytes

Oh man.

Here is a small patch. Please be sure that the logic is right here. This function already takes care of

das-peter’s picture

Tested on my site - language fallback condition is present and query works.
I didn't test without language fallback or without locale.
However, what about having the requrie_once inside the if?

dawehner’s picture

FileSize
890 bytes

This makes sense

kevin.klika’s picture

Patch #1450268-14: Fatal error: Call to undefined function language_fallback_get_candidates() did not apply correctly on martplug profile. Git couldn't find the file.
HOWEVER, manually applying the patch to the correct file worked.
Not sure if this is good enough for [reviewed and tested by the community], so I'm leaving it as [needs review].

adamharms’s picture

The patch in #4 worked for me with my error with locale turned on, but the view that returned the error is not returning any values

dawehner’s picture

I got this patch in.

3rdLOF’s picture

$4 worked like butter for me. Right on time to.

Thanks for the prompt reply.

mhahndl’s picture

#14 works for me. #5 not.

Niklas Fiekas’s picture

Status: Needs review » Fixed

Since dereine committed http://drupalcode.org/project/views.git/commitdiff/a802857 (#14), I think this is fixed.

drcho’s picture

#20 seems to work for me :-) Thank you!

Weehaa’s picture

Same problem after updating to Views 3.3 today. (only for one of my pages that work with Views).
Could fix it with #20 comment.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Murz’s picture

Got same problem on Views 3.3, going back to 3.2 solves the error.

myrto’s picture

Status: Closed (fixed) » Active

it seems that what the patch does is not included in Views.3.3 , has anyone noticed the same problem, and should we report the problem opening a new - issue for Views.3.3?

dawehner’s picture

It's at least fixed in 7.x-3.x-dev

Anonymous’s picture

Just got this error on a clean install of martplug (http://ftp.drupal.org/files/projects/martplug-7.x-1.x-dev-core.tar.gz) when trying to add a new product.

As a relative newbie to Drupal, is it easier to upgrade/downgrade Views module or try to decipher and apply the patch?

tim.plunkett’s picture

Status: Active » Closed (fixed)

Marking back, it's fixed in dev. It will be in 7.x-3.4

brandy.brown’s picture

I don't even have the document that is listed in these patches ...

Tino’s picture

Confirming that 3.x-dev (2012-May-01) fixed this.