aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.inc.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-07-21 19:47:14 +0000
committerz0rglub <z0rglub@piwigo.org>2003-07-21 19:47:14 +0000
commit2fa9252446a78d349ca2f50096430591cc5e012f (patch)
treebbf5cd282c8b9424b05d970c70e30610ea8b0e4f /include/config.inc.php
parent55a0a61aaf58a02e2ac5d2c489f81b1be4730cd8 (diff)
*** empty log message ***
git-svn-id: http://piwigo.org/svn/trunk@26 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config.inc.php')
-rw-r--r--include/config.inc.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/config.inc.php b/include/config.inc.php
index 7df262d11..e664d37e5 100644
--- a/include/config.inc.php
+++ b/include/config.inc.php
@@ -22,7 +22,6 @@ $lang = array();
include_once( PREFIX_INCLUDE.'./include/functions.inc.php' );
include_once( PREFIX_INCLUDE.'./include/vtemplate.class.php' );
-
// How to change the order of display for images in a category ?
//
// You have to modify $conf['order_by'].
@@ -39,8 +38,10 @@ include_once( PREFIX_INCLUDE.'./include/vtemplate.class.php' );
// without taking into account the date_available
$conf['order_by'] = ' ORDER BY date_available DESC, file ASC';
-$conf['nb_image_row'] = array('4','5','6','7','8');
-$conf['nb_row_page'] = array('2','3','4','5','6','7','10','20','1000');
+$conf['nb_image_row'] = array(4,5,6,7,8);
+$conf['nb_row_page'] = array(2,3,4,5,6,7,10,20,1000);
+$conf['slideshow_period'] = array(2,5,10);
+$conf['last_days'] = array(1,2,3,10,30,365);
$conf['version'] = '1.3';
$conf['site_url'] = 'http://www.phpwebgallery.net';
$conf['forum_url'] = 'http://forum.phpwebgallery.net';
@@ -58,12 +59,11 @@ $infos = array( 'prefix_thumbnail', 'webmaster', 'mail_webmaster', 'access',
'max_user_listbox', 'show_comments', 'nb_comment_page',
'upload_available', 'upload_maxfilesize', 'upload_maxwidth',
'upload_maxheight', 'upload_maxwidth_thumbnail',
- 'upload_maxheight_thumbnail' );
+ 'upload_maxheight_thumbnail','log','comments_validation' );
-$query = 'SELECT';
+$query = 'SELECT ';
foreach ( $infos as $i => $info ) {
if ( $i > 0 ) $query.= ',';
- else $query.= ' ';
$query.= $info;
}
$query.= ' FROM '.PREFIX_TABLE.'config;';
@@ -81,6 +81,5 @@ foreach ( $infos as $info ) {
$conf[$info] = get_boolean( $row[$info] );
}
}
-$conf['log'] = false;
$conf['top_number'] = 20;
?> \ No newline at end of file