diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-08-24 18:45:31 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-08-24 18:45:31 +0200 |
commit | 5f76c88df172452a1947819b1a1ad872543649b6 (patch) | |
tree | 8cef5f2c72a193b21fe5703ecca27e0c00af4f4e | |
parent | 36d033bd6203c574f7b6e43ef8fbdabf10249f44 (diff) | |
download | pykolab-5f76c88df172452a1947819b1a1ad872543649b6.tar.gz |
Escape the $ in $_SERVER with a \
-rw-r--r-- | share/templates/roundcubemail/kolab_files.inc.php.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/templates/roundcubemail/kolab_files.inc.php.tpl b/share/templates/roundcubemail/kolab_files.inc.php.tpl index effa1d9..1c5fced 100644 --- a/share/templates/roundcubemail/kolab_files.inc.php.tpl +++ b/share/templates/roundcubemail/kolab_files.inc.php.tpl @@ -1,7 +1,7 @@ <?php // URL of kolab-chwala installation -\$config['kolab_files_url'] = 'http://' . $_SERVER['HTTP_HOST'] . '/chwala/'; +\$config['kolab_files_url'] = 'http://' . \$_SERVER['HTTP_HOST'] . '/chwala/'; // List of files list columns. Available are: name, size, mtime, type \$config['kolab_files_list_cols'] = array('name', 'mtime', 'size'); |