From 72cd34a7b091026551c225da81980c055edf05a6 Mon Sep 17 00:00:00 2001 From: Max Pozdeev Date: Sun, 7 Feb 2010 18:47:41 +0300 Subject: [PATCH] * added 'url' and 'mtt_url' to default config --- src/db/config.php.default | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/db/config.php.default b/src/db/config.php.default index 2ffcc77..1afe304 100644 --- a/src/db/config.php.default +++ b/src/db/config.php.default @@ -15,6 +15,12 @@ $config['mysql.password'] = ""; # Tables prefix $config['prefix'] = "mtt_"; +# These two parameters are used when mytinytodo index.php called not from installation directory +# 'url' - URL where index.php is called from (ex.: http://site.com/todo.php) +# 'mtt_url' - directory URL where mytinytodo is installed (with trailing slash) (ex.: http://site.com/lib/mytinytodo/) +$config['url'] = ''; +$config['mtt_url'] = ''; + # Language pack $config['lang'] = "en";