diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-04-26 17:43:56 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-04-26 17:43:56 +0100 |
commit | 823a89616d40ebaaf769bff155f88c1e37dd1d00 (patch) | |
tree | ba06b1d9c9b18c44dee21db9e85b38b5898a474a /www/js/config.js-example | |
parent | 3eaca677cb5fe6bdab674339b42027bcc2102751 (diff) |
Specify that FMS_URL should not have an end slash.
This way round is better in case of URLs returned from the server (e.g.
for photos) that will have a starting slash.
Diffstat (limited to 'www/js/config.js-example')
-rw-r--r-- | www/js/config.js-example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/config.js-example b/www/js/config.js-example index 3e69b2d..33b4276 100644 --- a/www/js/config.js-example +++ b/www/js/config.js-example @@ -6,7 +6,8 @@ var CONFIG = { APP_NAME: 'FixMyStreet', // URL of the fixmystreet install to report to. See also config.xml-example - FMS_URL: 'http://fixmystreet.example.org/', + // Make sure it does *not* end with a slash. + FMS_URL: 'http://fixmystreet.example.org', // Name of the cobrand to use for templates, stylesheets etc. // Cobrand files should be placed in a new directory within www/cobrands/ |