From 324ffdeb196c20504fd6d80046454bbfefc9e4e1 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 30 Apr 2022 01:05:30 +0200 Subject: [PATCH] PatchTwitter: rename timestamp file --- PatchTwitter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PatchTwitter.php b/PatchTwitter.php index a76c87e..d598aad 100755 --- a/PatchTwitter.php +++ b/PatchTwitter.php @@ -9,7 +9,7 @@ require('TwitterKey.php'); use DG\Twitter\Twitter; function timestamp() { - $f = fopen(__DIR__ . '/timestamp.dat', 'a+'); + $f = fopen(__DIR__ . '/timestamp-twitter.dat', 'a+'); flock($f, LOCK_EX); $t = fgets($f); ftruncate($f, 0);