diff options
author | Nils Adermann <naderman@naderman.de> | 2007-05-26 14:23:00 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-05-26 14:23:00 +0000 |
commit | a69e12e3ab9e549adb7a33faee6c72b080167454 (patch) | |
tree | 0060f3d0597362d1efe7b0cdb6673db12d984b1a /phpBB/includes/functions_privmsgs.php | |
parent | 62be0ed93ae02260d96dffa3f0fe82bf0dde6ffd (diff) | |
download | forums-a69e12e3ab9e549adb7a33faee6c72b080167454.tar forums-a69e12e3ab9e549adb7a33faee6c72b080167454.tar.gz forums-a69e12e3ab9e549adb7a33faee6c72b080167454.tar.bz2 forums-a69e12e3ab9e549adb7a33faee6c72b080167454.tar.xz forums-a69e12e3ab9e549adb7a33faee6c72b080167454.zip |
- Send stylesheet in style.php even without a valid session id [Bug #11531]
- request_var should strictly return the requested number of dimensions
- corrected a character mapping in the search indexing character list, people might want to reindex after this change if they use fulltext_native
git-svn-id: file:///svn/phpbb/trunk@7685 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r-- | phpBB/includes/functions_privmsgs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 7f2e3e4c12..9ce281ba12 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -875,7 +875,7 @@ function update_unread_status($unread, $msg_id, $user_id, $folder_id) */ function handle_mark_actions($user_id, $mark_action) { - global $db, $user, $_POST, $phpbb_root_path, $phpEx; + global $db, $user, $phpbb_root_path, $phpEx; $msg_ids = request_var('marked_msg_id', array(0)); $cur_folder_id = request_var('cur_folder_id', PRIVMSGS_NO_BOX); |