Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8d6dda
)
MDL-32471 redefining the tinyicon thumbnail size to 24x24
author
David Mudrak
<david@moodle.com>
Mon, 21 May 2012 09:29:47 +0000
(11:29 +0200)
committer
David Mudrak
<david@moodle.com>
Mon, 21 May 2012 09:37:29 +0000
(11:37 +0200)
As requested by the Files 2.3 UI team.
lib/filestorage/file_storage.php
patch
|
blob
|
blame
|
history
diff --git
a/lib/filestorage/file_storage.php
b/lib/filestorage/file_storage.php
index
5e86eb4
..
149936b
100644
(file)
--- a/
lib/filestorage/file_storage.php
+++ b/
lib/filestorage/file_storage.php
@@
-246,7
+246,7
@@
class file_storage {
$file->copy_content_to($tmpfilepath);
if ($mode === 'tinyicon') {
- $data = generate_image_thumbnail($tmpfilepath,
16, 16
);
+ $data = generate_image_thumbnail($tmpfilepath,
24, 24
);
} else if ($mode === 'thumb') {
$data = generate_image_thumbnail($tmpfilepath, 90, 90);