include 'includes/config.inc.php';
$user_id = usermng_get_user();
if($user_id !== false){
$row = db_mysql_getone("SELECT * FROM `rjk_users` WHERE `user_id` =".$user_id);
$result3 = db_mysql_query("SELECT * FROM `rjk_profiles` WHERE `user_id` =".$user_id);
if(mysql_num_rows($result3)>0){
if(isset($_POST['to_profile_id'])){
// PN versenden
$pcontent = '
Private Nachricht senden:
';
$errors = '';
if(($_POST['from_profile_id'] == '') OR ($_POST['to_profile_id'] == '')){
$errors .= 'Datenfehler. Wenden sie sich an den Support.
';
}
if(($_POST['pm_subject'] == '') OR ($_POST['pm_text'] == '')){
$errors .= 'Bitte füllen sie alle Felder aus.
';
}
$_POST['from_profile_id'] = intval($_POST['from_profile_id']);
$_POST['to_profile_id'] = intval($_POST['to_profile_id']);
$from_user_id = yooclub_user_getusertoprofile($_POST['from_profile_id']);
$to_user_id = yooclub_user_getusertoprofile($_POST['to_profile_id']);
if($from_user_id != $user_id){
$errors .= 'Datenfehler. Wenden sie sich an den Support.
';
}
$_POST['pm_subject'] = addslashes(htmlspecialchars(strip_tags($_POST['pm_subject'])));
$_POST['pm_text'] = nl2br(addslashes(htmlspecialchars(strip_tags($_POST['pm_text']))));
if($errors == ''){
$tmp1 = min($from_user_id,$to_user_id);
$tmp2 = max($from_user_id,$to_user_id);
$pm_identifier = $tmp1.'-'.$tmp2;
$result = db_mysql_query("INSERT INTO `rjk_users_pm` (`pm_id`, `pm_identifier`, `from_user_id`, `from_profile_id`, `to_user_id`, `to_profile_id`, `pm_subject`, `pm_text`, `pm_datetime`, `pm_read`, `pm_read_datetime`) VALUES (NULL, '".$pm_identifier."', ".$from_user_id.", ".$_POST['from_profile_id'].", ".$to_user_id.", ".$_POST['to_profile_id'].", '".$_POST['pm_subject']."', '".$_POST['pm_text']."', NOW(), 0, '0000-00-00 00:00:00');");
header("Location:http://www.fussjoy.com/club/myaccount_pm_conv.php?pm_identifier=".$pm_identifier);
die();
//$pcontent .= 'Nachricht wurde erfolgreich gesendet. Zurück zu den privaten Nachrichten.
';
}else{
$pcontent .= 'Es ist ein Fehler aufgetreten:
'.$errors.'
';
}
}else{
$pcontent = '
Private Nachricht:
';
if(!yooclub_user_getpermission('sent_pn',$user_id)){
$pcontent .= 'Mit ihrer Mitgliedschaft sind HEUTE keine weiteren Nachrichten möglich.
';
}else{
if($user_id == $_GET['profile_id_to']){
header("Location:http://www.fussjoy.com/club/");
}
$row2 = db_mysql_getone("SELECT `profile_name` FROM `rjk_profiles` WHERE `profile_id` =".$_GET['profile_id_to']);
if(isset($_GET['subject'])){ $_GET['subject'] = urldecode($_GET['subject']); }else{ $_GET['subject'] = ''; }
$pcontent .= '
';
}
}
}else{
$pcontent = 'Um eine Nachricht zu schreiben, erstellen sie ein Profil.';
}
}else{
$pcontent = 'Um diese Seite anzuzeigen müssen sie eingeloggt sein oder registrieren sie sich jetzt.';
}
$meta_title = 'FussJoy';
$meta_description = '';
$meta_keywords = '';
$addcss = '';
$content = template(array('{ADDCSS}','{CONTENT}','{META_TITLE}','{META_DESCRIPTION}','{META_KEYWORDS}'),array($addcss,$pcontent,$meta_title,$meta_description,$meta_keywords),'index');
print generate_maintemplate($content);
?>