[fix] Wrong variable name due to copy-paste sunday.

This commit is contained in:
opi 2014-06-01 19:36:22 +02:00
parent 8808a5f327
commit 0b34df0b38

View file

@ -713,9 +713,9 @@ app = Sammy('#main', function (sam) {
data.settings.allowed_users = (data.settings.allowed_users) ? data.settings.allowed_users.replace(',', ', ') : ''; data.settings.allowed_users = (data.settings.allowed_users) ? data.settings.allowed_users.replace(',', ', ') : '';
// Multilingual description // Multilingual description
appData.description = (typeof appData.manifest.description[y18n.locale] !== 'indefined') ? data.description = (typeof data.manifest.description[y18n.locale] !== 'indefined') ?
appData.manifest.description[y18n.locale] : data.manifest.description[y18n.locale] :
appData.manifest.description['en'] data.manifest.description['en']
; ;