diff options
| author | Marc <dkm@kataplop.net> | 2009-06-10 09:53:00 +0200 |
|---|---|---|
| committer | Marc <dkm@kataplop.net> | 2009-06-10 09:53:00 +0200 |
| commit | 9b4c7ba73cc86dca8fb6cf81a37fbf806e643483 (patch) | |
| tree | 0c4d3a99471c21103a34ad5e2fb748199fe4f8f2 /modules/gallery/helpers/l10n_client.php | |
| parent | 657e17361db19ac1878b2a6d93595a763aef8b15 (diff) | |
| parent | fc64a55f2e6d2e3f16e0806e6672f7d8c8de42a7 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/l10n_client.php')
| -rw-r--r-- | modules/gallery/helpers/l10n_client.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/gallery/helpers/l10n_client.php b/modules/gallery/helpers/l10n_client.php index 33f23857..20f81ecc 100644 --- a/modules/gallery/helpers/l10n_client.php +++ b/modules/gallery/helpers/l10n_client.php @@ -123,7 +123,12 @@ class l10n_client_Core { $key = $message_data->key; $locale = $message_data->locale; $revision = $message_data->rev; - $translation = serialize(json_decode($message_data->translation)); + $translation = json_decode($message_data->translation); + if (!is_string($translation)) { + // Normalize stdclass to array + $translation = (array) $translation; + } + $translation = serialize($translation); // @todo Should we normalize the incoming_translations table into messages(id, key, message) // and incoming_translations(id, translation, locale, revision)? Or just allow |
