fixed some new introduced errors
[phpfspot.git] / phpfspot_cfg.php
1 <?php
2
3 class PHPFSPOT_CFG {
4
5    var $page_title = "phpfspot - dynamic PHP gallery for F-Spot";
6
7    var $product = "phpfspot";
8    var $version = "0.1";
9
10    var $base_path = "/var/www/images.netshadow.at/htdocs/phpfspot";
11
12    var $web_path = "/phpfspot";
13
14    var $thumb_width = "150";
15    var $bubble_width = "200";
16    var $photo_width = "640";
17
18    var $fspot_db = "/var/www/images.netshadow.at/htdocs/phpfspot/photos.db";
19    var $phpfspot_db = "/var/www/images.netshadow.at/htdocs/phpfspot/phpfspot.db";
20
21    var $path_replace_from = "/home/unki";
22    var $path_replace_to = "/var/www/images.netshadow.at/htdocs/phpfspot";
23
24    var $thumbs_per_row = 4;
25
26 }
27
28 ?>