2013-03-23 17:35:44 +01:00
|
|
|
<?php
|
2015-09-03 23:52:59 +02:00
|
|
|
/*
|
|
|
|
* 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).
|
|
|
|
*/
|
|
|
|
|
2016-06-24 17:07:13 +02:00
|
|
|
// Enter relativepath to MiniGal Nano here (eg. "subfolder/minigalnano") - No trailing /
|
|
|
|
$path_to_minigalnano = "minigalnano/";
|
2015-07-02 00:08:46 +02:00
|
|
|
|
2013-03-23 17:35:44 +01:00
|
|
|
define("GALLERY_ROOT", $path_to_minigalnano);
|
2015-07-02 00:08:46 +02:00
|
|
|
require GALLERY_ROOT . "index.php";
|
2015-09-03 23:52:59 +02:00
|
|
|
?>
|