summaryrefslogtreecommitdiff
path: root/GlobalConfig.md
diff options
context:
space:
mode:
authorfox <[email protected]>2021-02-24 08:17:33 +0300
committerfox <[email protected]>2021-02-24 08:17:33 +0300
commit7348d6471a0945e468fcf8ef75d0b0406064f521 (patch)
treee10e6970e1c30fcd27095fdf4dec74ab4267632e /GlobalConfig.md
parent4256567edb5046bf44b3fcb62526fd2c45707a0f (diff)
Update 'GlobalConfig'
Diffstat (limited to 'GlobalConfig.md')
-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
```