15 lines
514 B
PHP
15 lines
514 B
PHP
<?php
|
|
/*
|
|
* This file is part of MinigalNano: https://github.com/sebsauvage/MinigalNano
|
|
*
|
|
* MiniGal Nano is based on an original work by Thomas Rybak (© 2010)
|
|
*
|
|
* MinigalNano is licensed under the AGPL v3 (https://gnu.org/licenses/agpl-3.0.txt).
|
|
*/
|
|
|
|
$path_to_minigalnano = "minigalnano/"; // <- Enter RELATIVE path to MiniGal Nano here (eg. "subfolder/minigalnano") - DO NOT END WITH /
|
|
|
|
// DO NOT EDIT BELOW THIS LINE!
|
|
define("GALLERY_ROOT", $path_to_minigalnano);
|
|
require GALLERY_ROOT . "index.php";
|
|
?>
|