aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_content.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-12-24 14:44:19 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-12-24 14:44:19 +0000
commit3cd007c49d776b4e76f939dbd7d7c328bd09abe9 (patch)
tree287c795585bd490712255b17d0962ce5e838c36b /phpBB/includes/functions_content.php
parentac37f87105173ae50c357c96ffee43ef4d4b41f5 (diff)
downloadforums-3cd007c49d776b4e76f939dbd7d7c328bd09abe9.tar
forums-3cd007c49d776b4e76f939dbd7d7c328bd09abe9.tar.gz
forums-3cd007c49d776b4e76f939dbd7d7c328bd09abe9.tar.bz2
forums-3cd007c49d776b4e76f939dbd7d7c328bd09abe9.tar.xz
forums-3cd007c49d776b4e76f939dbd7d7c328bd09abe9.zip
change cache:: to phpbb_cache::
git-svn-id: file:///svn/phpbb/trunk@9226 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_content.php')
-rw-r--r--phpBB/includes/functions_content.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php
index 875c711c4e..e497a61920 100644
--- a/phpBB/includes/functions_content.php
+++ b/phpBB/includes/functions_content.php
@@ -682,7 +682,7 @@ function censor_text($text)
}
else
{
- $censors = cache::obtain_word_list();
+ $censors = phpbb_cache::obtain_word_list();
}
}
@@ -754,7 +754,7 @@ function parse_attachments($forum_id, &$message, &$attachments, &$update_count,
if (empty($extensions) || !is_array($extensions))
{
- $extensions = cache::obtain_attach_extensions($forum_id);
+ $extensions = phpbb_cache::obtain_extensions_forum($forum_id);
}
// Look for missing attachment information...
@@ -1069,7 +1069,7 @@ function extension_allowed($forum_id, $extension, &$extensions)
if (empty($extensions))
{
global $cache;
- $extensions = cache::obtain_attach_extensions($forum_id);
+ $extensions = phpbb_cache::obtain_extensions_forum($forum_id);
}
return (!isset($extensions['_allowed_'][$extension])) ? false : true;