Hi

I have a system with admin generated backend. My system is in 'en'
language (culture).
I added article in 'kr' language (culture), so now for example title
field isn't shown in articles list because this article doesn't have a
I18n version in en. How to fix this?

I tried to overwrite getTitle function in order to search for first
i18n version, but it allocate to much memory and crash.
Strange thing is when I make this:

  public function getTitle($culture = null)
  {
      return $this->getTitle('kr');
    }

it crashes, but when I make this

public function getTitle($culture = null)
  {
      return $this->getSubtitle('kr');
    }

it works, it gets subtitle instead of title.

-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.

Reply via email to