X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-user_contct.php;h=03f6629995a1f09f5e4470658a4738f1c3d1c77f;hb=dc25bd7a76750f02e2d617c9db9eb0aae53270f5;hp=61fb08a7ccaf1db2769cdd935c3d1c1829876be6;hpb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;p=mailer.git diff --git a/inc/modules/admin/what-user_contct.php b/inc/modules/admin/what-user_contct.php index 61fb08a7cc..03f6629995 100644 --- a/inc/modules/admin/what-user_contct.php +++ b/inc/modules/admin/what-user_contct.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -56,23 +56,23 @@ if ((isGetRequestParameterSet('userid')) && (bigintval(getRequestParameter('user // Shall we send the email? if (isFormSent()) { // Insert text - $content['text'] = trim(secureString(postRequestParameter('text'))); + $content['text'] = postRequestParameter('text'); // Load email template $message = loadEmailTemplate('member_contct', $content, getRequestParameter('userid')); // Send contact form out - sendEmail($content['email'], '{--ADMIN_CONTACT_USER_SUBJECT--}', $message); + sendEmail($content['userid'], '{--ADMIN_CONTACT_USER_SUBJECT--}', $message); // Display message - loadTemplate('admin_settings_saved', false, '{--ADMIN_USER_CONTACTED--}'); + displayMessage('{--ADMIN_USER_CONTACTED--}'); } else { // Load contact form template loadTemplate('admin_contct_user_form', false, $content); } } else { // Not found? - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_USER_ACCOUNT_404', bigintval(getRequestParameter('userid')))); + displayMessage('{%message,ADMIN_USER_ACCOUNT_404=' . bigintval(getRequestParameter('userid')) . '%}'); } } else { // Display selection box