diff options
author | vdigital <vdigital@piwigo.org> | 2007-01-17 23:08:41 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2007-01-17 23:08:41 +0000 |
commit | e81260cdec75e196feed698a05cad88236d3ed42 (patch) | |
tree | 4ed44f2f56e00420e8b6884e90cc768e45b397c8 /include/config_default.inc.php | |
parent | 8e43a0fec128ad379bcdf432ddb034db66097c7e (diff) |
Issue 0000622: Optional light slideshow
(Active by default - Switch off by $conf['light_slideshow'] = false)
Order by in admin/comments.php
git-svn-id: http://piwigo.org/svn/trunk@1730 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 2b9dd1d24..52190833f 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $RCSfile$ @@ -623,4 +623,15 @@ $conf['filter_pages'] = array 'upgrade_feed' => array('cancel' => true), ); +// +-----------------------------------------------------------------------+ +// | Light slideshow | +// +-----------------------------------------------------------------------+ +// $conf['light_slideshow'] indicates to use slideshow.tpl in state of +// picture.tpl for slideshow +// Take care to have slideshow.tpl in all available templates +// Or set it false. +// Check if Picture's plugins are compliant with it +// Every plugin from 1.7 would be design to manage light_slideshow case. +$conf['light_slideshow'] = true; + ?> |