diff options
author | ArthurHoaro <arthur@hoa.ro> | 2015-11-26 20:51:53 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2015-11-26 20:51:53 +0100 |
commit | 657f0e25ba2c6f39775a8386b62d7c662ae709f7 (patch) | |
tree | 5d32e1ec261be9feeea00a40ef29b3d2fde1d63d | |
parent | 986afb752bc57271e76935da9ed2df6ef8713cb7 (diff) | |
download | Shaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.tar.gz Shaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.tar.zst Shaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.zip |
Fixes incorrect call to
From 2e28269baed195d58bbe169841eed176b171db76
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -337,7 +337,7 @@ function checkUpdate() | |||
337 | function logm($message) | 337 | function logm($message) |
338 | { | 338 | { |
339 | $t = strval(date('Y/m/d_H:i:s')).' - '.$_SERVER["REMOTE_ADDR"].' - '.strval($message)."\n"; | 339 | $t = strval(date('Y/m/d_H:i:s')).' - '.$_SERVER["REMOTE_ADDR"].' - '.strval($message)."\n"; |
340 | file_put_contents($GLOBAL['config']['LOG_FILE'], $t, FILE_APPEND); | 340 | file_put_contents($GLOBALS['config']['LOG_FILE'], $t, FILE_APPEND); |
341 | } | 341 | } |
342 | 342 | ||
343 | // In a string, converts URLs to clickable links. | 343 | // In a string, converts URLs to clickable links. |