aboutsummaryrefslogtreecommitdiff
path: root/settings.php
blob: a18660da0786887d751a3aa9dbac40e1fbd8c430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

/*******************************************************************
 *
 * Tidypics Settings
 *
 * DO NOT CHANGE THESE - Use tidypics_settings plugin
 *
 ********************************************************************/

/////////////////////////////////////////////////////////////////////
// Image sizes - Tidypics makes 3 views of an image:
// Large - displayed when viewing the image alone
// Small - displayed on an album page
// Thumb - used for the activity log
// There is also the original image that is available for download
	$CONFIG->tidypics->image_large_width = 600;
	$CONFIG->tidypics->image_large_height = 600;

	$CONFIG->tidypics->image_small_width = 153;
	$CONFIG->tidypics->image_small_height = 153;

	$CONFIG->tidypics->image_thumb_width = 60;
	$CONFIG->tidypics->image_thumb_height = 60;

?>