diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-09 03:29:22 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-09 03:29:22 +0000 |
commit | 1ad7ca639ddb87af3755a4ac17ae5199fa5c4fc2 (patch) | |
tree | a44e94ad9bddd9bbe99c002550916d94ab7373f7 /installer/init_var.php | |
parent | 445f18fb51a55102a95b6a1ffd388ee06ecd5041 (diff) |
Make the description a text column so that we can handle much larger
descriptions.
Diffstat (limited to 'installer/init_var.php')
-rw-r--r-- | installer/init_var.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/init_var.php b/installer/init_var.php index b0f0d5db..b1ecf995 100644 --- a/installer/init_var.php +++ b/installer/init_var.php @@ -1,8 +1,8 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <?php !file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums"); +!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); !file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads"); -!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); !file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes"); -!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); !file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs"); +!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); |