diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-11-28 00:01:35 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-11-28 00:01:35 +0000 |
commit | 32087ed0672a7921af76f92eb2e8d3b6e3a166de (patch) | |
tree | 64ef114626ce5545c7c3c116368d22892d1f1474 /lib | |
parent | 89c9e0571b68a2608fd8426a34204e42fc77e6b3 (diff) | |
download | rpg-32087ed0672a7921af76f92eb2e8d3b6e3a166de.tar.gz rpg-32087ed0672a7921af76f92eb2e8d3b6e3a166de.tar.bz2 |
Bugfix: correct variable name to
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/usermanager/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/usermanager/admin.php b/lib/plugins/usermanager/admin.php index c4d71cb22..f2ee95b38 100644 --- a/lib/plugins/usermanager/admin.php +++ b/lib/plugins/usermanager/admin.php @@ -830,7 +830,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin { if (!$this->_auth->canDo('addUser')) return false; // check file uploaded ok. - if (empty($_FILES['import']['size']) || !empty($FILES['import']['error']) && is_uploaded_file($FILES['import']['tmp_name'])) { + if (empty($_FILES['import']['size']) || !empty($_FILES['import']['error']) && is_uploaded_file($_FILES['import']['tmp_name'])) { msg($this->lang['import_error_upload'],-1); return false; } |