From 7030578bbe9e11c18b5becaf8b06e670e3c2e3cd Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sun, 14 Jul 2013 01:32:34 -0400 Subject: [ticket/11698] Moving all autoloadable files to phpbb/ PHPBB3-11698 --- phpBB/includes/cache/driver/apc.php | 75 ------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 phpBB/includes/cache/driver/apc.php (limited to 'phpBB/includes/cache/driver/apc.php') diff --git a/phpBB/includes/cache/driver/apc.php b/phpBB/includes/cache/driver/apc.php deleted file mode 100644 index 0516b669c8..0000000000 --- a/phpBB/includes/cache/driver/apc.php +++ /dev/null @@ -1,75 +0,0 @@ -key_prefix . $var); - } - - /** - * Store data in the cache - * - * @access protected - * @param string $var Cache key - * @param mixed $data Data to store - * @param int $ttl Time-to-live of cached data - * @return bool True if the operation succeeded - */ - function _write($var, $data, $ttl = 2592000) - { - return apc_store($this->key_prefix . $var, $data, $ttl); - } - - /** - * Remove an item from the cache - * - * @access protected - * @param string $var Cache key - * @return bool True if the operation succeeded - */ - function _delete($var) - { - return apc_delete($this->key_prefix . $var); - } -} -- cgit v1.2.1