diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-01-21 18:33:45 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-01-21 18:33:45 +0000 |
| commit | 576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a (patch) | |
| tree | 044f9e15ce160c7b3ad7a3c6db4533de93367287 /phpBB/includes/functions_privmsgs.php | |
| parent | 61d4209aafac6a58bc3cecffaab8f821c4149688 (diff) | |
| download | forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.gz forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.bz2 forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.xz forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.zip | |
fixing some bugs, most being submitted grammatical/spelling errors.
git-svn-id: file:///svn/phpbb/trunk@6915 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
| -rw-r--r-- | phpBB/includes/functions_privmsgs.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 9296d254e5..7677f4ba34 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -17,7 +17,7 @@ if (!defined('IN_PHPBB')) /* Ability to simply add own rules by doing three things: - 1) Add an appropiate constant + 1) Add an appropriate constant 2) Add a new check array to the global_privmsgs_rules variable and the condition array (if one is required) 3) Add a new language variable to ucp.php @@ -313,7 +313,7 @@ function check_rule(&$rules, &$rule_row, &$message_row, $user_id) } /** -* Place new messages into appropiate folder +* Place new messages into appropriate folder */ function place_pm_into_folder(&$global_privmsgs_rules, $release = false) { @@ -347,7 +347,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false) AND t.folder_id = " . PRIVMSGS_NO_BOX . ' AND t.msg_id = p.msg_id'; - // Just place into the appropiate arrays if no rules need to be checked + // Just place into the appropriate arrays if no rules need to be checked if (!$user_message_rules) { $result = $db->sql_query($retrieve_sql); @@ -420,7 +420,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false) $db->sql_freeresult($result); } - // Now place into the appropiate folder + // Now place into the appropriate folder foreach ($check_rows as $row) { // Add membership if set |
