aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-05-12 13:20:38 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-05-12 13:20:38 +0000
commit599d8496bf328981a5c789eed2bb74af8115367e (patch)
treee43c1653d936e607421430484582e8caf4c9b5b2 /phpBB/includes
parent841f5d82f6a33c390ad02c543e7231361dd5e396 (diff)
downloadforums-599d8496bf328981a5c789eed2bb74af8115367e.tar
forums-599d8496bf328981a5c789eed2bb74af8115367e.tar.gz
forums-599d8496bf328981a5c789eed2bb74af8115367e.tar.bz2
forums-599d8496bf328981a5c789eed2bb74af8115367e.tar.xz
forums-599d8496bf328981a5c789eed2bb74af8115367e.zip
informational change for orphaned attachments - they only list already uploaded files not assigned to posts (orphaned attachments).
add index.htm files to cache and files directory. git-svn-id: file:///svn/phpbb/trunk@7547 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/auth.php2
-rw-r--r--phpBB/includes/functions_posting.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 4dfa617caf..669613c589 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -430,7 +430,7 @@ class auth_admin extends auth
// If we only have one forum id to display or being in local mode and more than one user/group to display,
// we switch the complete interface to group by user/usergroup instead of grouping by forum
- // To achive this, we need to switch the array a bit
+ // To achieve this, we need to switch the array a bit
if (sizeof($forum_ids) == 1 || ($local && sizeof($ug_names_ary) > 1))
{
$hold_ary_temp = $hold_ary;
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 3b0da3d63b..2cbfd56adc 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1436,7 +1436,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
}
// First of all make sure the subject and topic title are having the correct length.
- // To achive this without cutting off between special chars we convert to an array and then count the elements.
+ // To achieve this without cutting off between special chars we convert to an array and then count the elements.
$subject = truncate_string($subject);
$data['topic_title'] = truncate_string($data['topic_title']);