mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
Fixed Issue ID 0000593: *.jpeg support in PWG
git-svn-id: http://piwigo.org/svn/trunk@1635 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -72,12 +72,14 @@ $conf['order_by'] = ' ORDER BY date_available DESC, file ASC, id ASC';
|
||||
$conf['slideshow_period'] = 4;
|
||||
|
||||
// file_ext : file extensions (case sensitive) authorized
|
||||
$conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip',
|
||||
$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG',
|
||||
'png','PNG','gif','GIF','mpg','zip',
|
||||
'avi','mp3','ogg');
|
||||
|
||||
// picture_ext : file extensions for picture file, must be a subset of
|
||||
// file_ext
|
||||
$conf['picture_ext'] = array('jpg','JPG','png','PNG','gif','GIF');
|
||||
$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG',
|
||||
'png','PNG','gif','GIF');
|
||||
|
||||
// top_number : number of element to display for "best rated" and "most
|
||||
// visited" categories
|
||||
|
||||
Reference in New Issue
Block a user