diff options
author | plegall <plg@piwigo.org> | 2011-12-16 13:52:40 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-12-16 13:52:40 +0000 |
commit | 2372b25a1c8d9a5db8e596c50959a0e5934af208 (patch) | |
tree | 19469ce26a06b46431a3e0278d439118f164f163 /admin/batch_manager_global.php | |
parent | a1b59897a1fb62b71fcac05670631f094eb8a3b3 (diff) |
bug 2534 fixed: clean (as clean as possible with MySQL+MyISAM) handle of
concurrency on user cache refresh. No more error when regenerating several
thumbnails at once.
git-svn-id: http://piwigo.org/svn/branches/2.3@12747 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/batch_manager_global.php')
-rw-r--r-- | admin/batch_manager_global.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index 8b42165f7..d8293e243 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -42,12 +42,6 @@ foreach ($upload_form_config as $param_shortname => $param) $form_values[$param_shortname] = $conf[$param_name]; } -// User cache must not be regenerated during simultaneous ajax requests -if (!isset($user['need_update']) or !$user['need_update']) -{ - getuserdata($user['id'], true); -} - // +-----------------------------------------------------------------------+ // | Check Access and exit when user status is not ok | // +-----------------------------------------------------------------------+ |