Ignore:
Timestamp:
Jul 21, 2003, 9:47:14 PM (21 years ago)
Author:
z0rglub
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config.inc.php

    r21 r26  
    2323include_once( PREFIX_INCLUDE.'./include/functions.inc.php' );
    2424include_once( PREFIX_INCLUDE.'./include/vtemplate.class.php' );
    25 
    2625// How to change the order of display for images in a category ?
    2726//
     
    4039$conf['order_by'] = ' ORDER BY date_available DESC, file ASC';
    4140
    42 $conf['nb_image_row']       = array('4','5','6','7','8');
    43 $conf['nb_row_page']        = array('2','3','4','5','6','7','10','20','1000');
     41$conf['nb_image_row']       = array(4,5,6,7,8);
     42$conf['nb_row_page']        = array(2,3,4,5,6,7,10,20,1000);
     43$conf['slideshow_period']   = array(2,5,10);
     44$conf['last_days']          = array(1,2,3,10,30,365);
    4445$conf['version']            = '1.3';
    4546$conf['site_url']           = 'http://www.phpwebgallery.net';
     
    5960                'upload_available', 'upload_maxfilesize', 'upload_maxwidth',
    6061                'upload_maxheight', 'upload_maxwidth_thumbnail',
    61                 'upload_maxheight_thumbnail' );
     62                'upload_maxheight_thumbnail','log','comments_validation' );
    6263
    63 $query  = 'SELECT';
     64$query  = 'SELECT ';
    6465foreach ( $infos as $i => $info ) {
    6566  if ( $i > 0 ) $query.= ',';
    66   else          $query.= ' ';
    6767  $query.= $info;
    6868}
     
    8282  }
    8383}
    84 $conf['log']        = false;
    8584$conf['top_number'] = 20;
    8685?>
Note: See TracChangeset for help on using the changeset viewer.