aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/privmsg.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-03-02 18:12:19 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-03-02 18:12:19 +0000
commit6172b1c51eace2e7eaf2157aaf06aec081ad5564 (patch)
treea8f0235a0644794308b04991356c82e2bdde31cd /phpBB/privmsg.php
parentdcdb379679959bf96a721dc9e28d07fedee1ed5b (diff)
downloadforums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.gz
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.bz2
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.xz
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.zip
Changed way subject is sent to email ... handled by templates where necessary
git-svn-id: file:///svn/phpbb/trunk@2247 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/privmsg.php')
-rw-r--r--phpBB/privmsg.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php
index dda275ee4f..e94caa9405 100644
--- a/phpBB/privmsg.php
+++ b/phpBB/privmsg.php
@@ -1125,7 +1125,7 @@ else if( $submit || $refresh || $mode != "" )
$emailer->use_template("privmsg_notify", $to_userdata['user_lang']);
$emailer->extra_headers($email_headers);
$emailer->email_address($to_userdata['user_email']);
- $emailer->set_subject($lang['Notification_subject']);
+ $emailer->set_subject(); //$lang['Notification_subject']
$emailer->assign_vars(array(
"USERNAME" => $to_username,
@@ -1207,16 +1207,6 @@ else if( $submit || $refresh || $mode != "" )
message_die(GENERAL_ERROR, "Couldn't obtain post and post text", "", __LINE__, __FILE__, $sql);
}
}
-
- //
- // Process the username list operations
- //
- if( $submit_search )
- {
- if( !empty($HTTP_POST_VARS['username_search']) )
- {
- }
- }
}
else
{