diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-06-05 15:40:56 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-06-05 15:40:56 +0000 |
commit | 9c00496ff5f5d940d34692c4800e209887d7e9fa (patch) | |
tree | e1e026b1ab1e08f4c8bf7cd5b7af63b34dce7b74 /phpBB/includes/acm/acm_memcache.php | |
parent | a7c7f6a6a80f99dfd6443d5bd905987361812318 (diff) | |
download | forums-9c00496ff5f5d940d34692c4800e209887d7e9fa.tar forums-9c00496ff5f5d940d34692c4800e209887d7e9fa.tar.gz forums-9c00496ff5f5d940d34692c4800e209887d7e9fa.tar.bz2 forums-9c00496ff5f5d940d34692c4800e209887d7e9fa.tar.xz forums-9c00496ff5f5d940d34692c4800e209887d7e9fa.zip |
Fix a small bug with xcache (thanks bantu), and some code consistency changes
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9544 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm/acm_memcache.php')
-rw-r--r-- | phpBB/includes/acm/acm_memcache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acm/acm_memcache.php b/phpBB/includes/acm/acm_memcache.php index b22205578e..5a34a2a51d 100644 --- a/phpBB/includes/acm/acm_memcache.php +++ b/phpBB/includes/acm/acm_memcache.php @@ -19,7 +19,7 @@ if (!defined('IN_PHPBB')) // Include the abstract base if (!class_exists('acm_memory')) { - require("${phpbb_root_path}includes/acm/acm_memory.$phpEx"); + require("{$phpbb_root_path}includes/acm/acm_memory.$phpEx"); } if (!defined('PHPBB_ACM_MEMCACHE_PORT')) |