aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2015-11-26 20:51:53 +0100
committerArthurHoaro <arthur@hoa.ro>2015-11-26 20:51:53 +0100
commit657f0e25ba2c6f39775a8386b62d7c662ae709f7 (patch)
tree5d32e1ec261be9feeea00a40ef29b3d2fde1d63d
parent986afb752bc57271e76935da9ed2df6ef8713cb7 (diff)
downloadShaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.tar.gz
Shaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.tar.zst
Shaarli-657f0e25ba2c6f39775a8386b62d7c662ae709f7.zip
Fixes incorrect call to
From 2e28269baed195d58bbe169841eed176b171db76
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index b4d9395f..bb00c11d 100644
--- a/index.php
+++ b/index.php
@@ -337,7 +337,7 @@ function checkUpdate()
337function logm($message) 337function 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.