blob: 4a8830e9eb542e2f82bcd39fe8f937c5343facb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
$baseurl = "http://localhost/alex.auvolat/files/";
$savedir = getcwd() . "/files/";
$img_mini_width = 127;
function has_mini($ext) {
return $ext == "jpg" || $ext == "jpeg" || $ext == "png" || $ext == "gif";
}
//$quota = 128;; //ceil((time() - 1220000000) / (3600 * 24 * 20));
//$min_priv_for_no_quota = 2;
|