diff options
author | patdenice <patdenice@piwigo.org> | 2009-01-13 00:40:40 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2009-01-13 00:40:40 +0000 |
commit | 644f226af6b550288a2a0f07b6e42e5ffce63f5d (patch) | |
tree | 87189e58d4b2ec29d34af904772964f6253d08cd /admin | |
parent | 120678f0781dd766c6b9ca21d38b8204eba18059 (diff) |
merge -c3070 from trunk to branch 2.0.
Send user language when retrieving datas from PEM api.
git-svn-id: http://piwigo.org/svn/branches/2.0@3071 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/plugins.class.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/include/plugins.class.php b/admin/include/plugins.class.php index 821176870..d746298df 100644 --- a/admin/include/plugins.class.php +++ b/admin/include/plugins.class.php @@ -264,6 +264,8 @@ DELETE FROM ' . PLUGINS_TABLE . ' WHERE id="' . $plugin_id . '"'; */ function get_server_plugins($new=false) { + global $user; + // Retrieve PEM versions $version = PHPWG_VERSION; $versions_to_check = array(); @@ -301,6 +303,7 @@ DELETE FROM ' . PLUGINS_TABLE . ' WHERE id="' . $plugin_id . '"'; // Retrieve PEM plugins infos $url = PEM_URL . '/api/get_revision_list.php?category_id=12&format=php&last_revision_only=true'; $url .= '&version=' . implode(',', $versions_to_check); + $url .= '&lang=' . substr($user['language'], 0, 2); if (!empty($plugins_to_check)) { |