From 1ea20897a2f2fdfaf8ec2725771d2ff7c8bf27a7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 5 Nov 2010 16:49:23 +0300 Subject: remove read_stampfile() --- functions.php | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index be3937642..256a6402e 100644 --- a/functions.php +++ b/functions.php @@ -2263,26 +2263,6 @@ } } - function read_stampfile($filename) { - - error_reporting(0); - $fp = fopen(LOCK_DIRECTORY . "/$filename", "r"); - error_reporting (DEFAULT_ERROR_LEVEL); - - if ($fp) { - if (flock($fp, LOCK_EX)) { - $stamp = fgets($fp); - flock($fp, LOCK_UN); - fclose($fp); - return $stamp; - } else { - return false; - } - } else { - return false; - } - } - function sql_random_function() { if (DB_TYPE == "mysql") { return "RAND()"; @@ -3223,9 +3203,7 @@ if (time() - $_SESSION["daemon_stamp_check"] > 30) { - $stamp = (int)read_stampfile("update_daemon.stamp"); - -// print ""; + $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp"); if ($stamp) { $stamp_delta = time() - $stamp; -- cgit v1.2.3