gracias por responder Nazcar,,,estoy checando ahorita los archivos PHP...y ya me fije que cuando entro al foro phpBB y quiero seleccionar la opción de "Ver si tengo mensajes privados"...al loguearme...se utiliza el archivo "privmsg.php"...
aqui les muestro esto del archivo (install.txt) y quiero preguntar si estoy bien??:
# 
#-----[ OPEN ]---------------------------------------------
# 
privmsg.php
# 
#-----[ FIND ]---------------------------------------------
# around line 131
// ----------
// Start main
# 
#-----[ BEFORE, ADD ]-------------------------------------- 
# 
execute_privmsgs_attachment_handling($mode);
Entendido lo anterior,,,Yo lo puse asi:
execute_privmsgs_attachment_handling($mode); //SE LO AGREGUE ATTACH
// ----------
// Start main
//
¿¿¿¿está bien???
segunda busqueda:
# 
#-----[ FIND ]---------------------------------------------
# around line 350
	//
	// Pick a folder, any folder, so long as it's one below ...
# 
#-----[ BEFORE, ADD ]-------------------------------------- 
# 
	$attachment_mod['pm']->duplicate_attachment_pm($privmsg['privmsgs_attachment'], $privmsg['privmsgs_id'], $privmsg_sent_id);
Entendido lo anterior,,,yo lo puse así:
$attachment_mod['pm']->duplicate_attachment_pm($privmsg['privmsgs_attachment'], $privmsg['privmsgs_id'], $privmsg_sent_id); //SE LO AGREGUE ATTACH 
//
// Pick a folder, any folder, so long as it's one below ...
//
¿¿¿¿está bien?????
tercera busqueda:
#
#-----[ FIND ]---------------------------------------------
# around line 490
	$user_id_to = $privmsg['user_id_2'];
# 
#-----[ AFTER, ADD ]--------------------------------------- 
# 
	init_display_pm_attachments($privmsg['privmsgs_attachment']);
Entendido lo anterior,,,yo lo puse así:
$user_id_to = $privmsg['user_id_2'];
init_display_pm_attachments($privmsg['privmsgs_attachment']); //SE LO AGREGUE ATTACH
¿¿¿está bien???
cuarta busqueda:
#
#-----[ FIND ]---------------------------------------------
# around line 750
			$mark_list[] = $row['privmsgs_id'];
		}
		unset($delete_type);
# 
#-----[ AFTER, ADD ]--------------------------------------- 
# 
		$attachment_mod['pm']->delete_all_pm_attachments($mark_list);
Entendido lo anterior,,,yo lo puse asi:
}
unset($delete_type);
$attachment_mod['pm']->delete_all_pm_attachments($mark_list); //SE LO AGREGUE ATTACH 
¿¿¿¿está bien?????
quinta busqueda:
#
#-----[ FIND ]---------------------------------------------
# around line 1319
		if ( $mode != 'edit' )
		{
			//
			// Add to the users new pm counter
			//
# 
#-----[ BEFORE, ADD ]--------------------------------------- 
# The Line has to be added BEFORE 'if ( $mode != 'edit' )'
		$attachment_mod['pm']->insert_attachment_pm($privmsg_id);
Entendido lo anterior, yo lo puse asi:
$attachment_mod['pm']->insert_attachment_pm($privmsg_id); //SE LO AGREGUE ATTACH 
if ( $mode != 'edit' )
{
	//
	// Add to the users new pm counter
	//
¿¿¿¿esta bien????
sexta busqueda:
#
#-----[ FIND ]---------------------------------------------
# around line 1624
			"preview" => 'privmsgs_preview.tpl')
		);
# 
#-----[ AFTER, ADD ]--------------------------------------- 
# The Line have to be added AFTER the ');'
		$attachment_mod['pm']->preview_attachments();
Entendido lo anterior,,yo lo puse asi:
"preview" => 'privmsgs_preview.tpl')
);
$attachment_mod['pm']->preview_attachments(); //SE LO AGREGUE ATTACH
¿¿¿¿esta bien???
septima busqueda:
#
#-----[ FIND ]---------------------------------------------
# around line 2169
			'DATE' => $msg_date,
# 
#-----[ AFTER, ADD ]--------------------------------------- 
# 
			'PRIVMSG_ATTACHMENTS_IMG' => privmsgs_attachment_image($privmsg_id),
Entendido lo anterior,,,yo lo puse asi:
'DATE' => $msg_date,
'PRIVMSG_ATTACHMENTS_IMG' => privmsgs_attachment_image($privmsg_id), //SE LO AGREGUE ATTACH
¿¿¿esta bien???
como ves??? espero respuesta....saludos!!!!
Respondo rapido!!!