mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-14 01:39:07 -04:00
ordering and known values. This way subsequent packaging runs won't have any differences unless there's a real data change.
9 lines
449 B
PHP
9 lines
449 B
PHP
<?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 . "modules") && mkdir(VARPATH . "modules");
|
|
!file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes");
|
|
!file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs");
|
|
!file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads");
|