summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GlobalConfig.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/GlobalConfig.md b/GlobalConfig.md
index 1900172..d85cef3 100644
--- a/GlobalConfig.md
+++ b/GlobalConfig.md
@@ -28,7 +28,7 @@ And both of those won't give you expected results:
putenv("TTRSS_SESSION_COOKIE_LIFETIME='2592000'");
# => 0, because '2592000' is an invalid number
-putenv(‘TTRSS_SESSION_COOKIE_LIFETIME=86400*30’);
+putenv('TTRSS_SESSION_COOKIE_LIFETIME=86400*30');
# => 86400, because expression is not evaluated, so you're just casting a string literal "86400*30" to integer
```