diff options
Diffstat (limited to 'install.php')
-rwxr-xr-x | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 9f627ae..d1a8ba5 100755 --- a/install.php +++ b/install.php @@ -16,7 +16,7 @@ if (file_exists(dirname(__FILE__) . '/custom/config.yml') && isset($login) && is $save = array(); //Save config file $config = array( - 'url' => filter_var($_REQUEST['url'], FILTER_SANITIZE_ENCODED), + 'url' => $_REQUEST['url'], 'name' => filter_var($_REQUEST['title'], FILTER_SANITIZE_SPECIAL_CHARS), 'locale' => filter_var($_REQUEST['locale'], FILTER_SANITIZE_SPECIAL_CHARS), 'items' => 10, |