]> git.koha-community.org Git - koha.git/commit
Bug 9065 - set correct permission for upload local cover image
authorFridolyn SOMERS <fridolyn.somers@biblibre.com>
Wed, 9 Jan 2013 09:40:24 +0000 (10:40 +0100)
committerChris Cormack <chris@bigballofwax.co.nz>
Tue, 15 Jan 2013 04:29:02 +0000 (17:29 +1300)
commit774f7eece6da4e39a70675921e344c80cc92f666
tree7e7dff1a058424b9f64f049d200b7139534517cd
parent8b278669d1a8d30daa4fb44ee8232e91ac2d1edb
Bug 9065 - set correct permission for upload local cover image

This patch fixes a problem where if a staff user has the
upload_local_cover_images permission (and is not a superlibrarian
and does not have all of the tools permissions), trying to use the
"Tools -> Upload local cover image" will fail with "You do not have
permissions [...]".

To test after applying the patch:

- Create a staff uesr that has just the catalogue and
  upload_local_cover_images permission.
- Log in as that staff user.
- Go to "Tools -> Upload local cover image".
- Verify that one is given the form to upload a cover image.
- Without the patch, one will be presented with the login
  form instead.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
mysql> select * from permissions where code="upload_cover_images";
Empty set (0.00 sec)

mysql> select * from permissions where code="upload_local_cover_images";
+------------+---------------------------+---------------------------+
| module_bit | code                      | description               |
+------------+---------------------------+---------------------------+
|         13 | upload_local_cover_images | Upload local cover images |
+------------+---------------------------+---------------------------+
1 row in set (0.00 sec)

"git grep upload_cover_images" returns 0 result.
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
tools/upload-cover-image.pl