This didn't work for 6.1.0.3. So, i Edited it as follows: ############################# # Sleepy custom hack # # To view PM when replying # # ########################### # # Only 2 files need changing # # public_pm_form.pl & ubb_pm.cgi # ############################ ################### #OPEN public_pm_form.pl ################### #find ################### print <$TBB NearBottom ################# # replace with ################# print <$TBB $i_frame NearBottom ################# # save and exit ################# # open ubb_pm.cgi ################# # find ################# sub pm_reply { local (%pm_user_index, %pm_user_index_sent, %pm_topic_data, %pm_date, %pm_time, %pm_post, %pm_icon, %pm_to, %pm_from, %pm_signature, @pm_profile, $ubb_images, $j, $is_html, $is_ubb, $html_allowed, $ubb_allowed, $ubb_images_wording, $icon_field, $show_sig, $disable_smilies, $close_option, @user_profile, $ubb_code_buttons, $pm_to_name, $page_title, $form_hiddens, $breadcrumb, $subject_field); ################ # replace ################ sub pm_reply { local (%pm_user_index, %pm_user_index_sent, %pm_topic_data, %pm_date, %pm_time, %pm_post, %pm_icon, %pm_to, %pm_from, %pm_signature, @pm_profile, $ubb_images, $j, $is_html, $is_ubb, $html_allowed, $ubb_allowed, $ubb_images_wording, $icon_field, $show_sig, $disable_smilies, $close_option, $i_frame, $i_frame_alt, @user_profile, $ubb_code_buttons, $pm_to_name, $page_title, $form_hiddens, $breadcrumb, $subject_field); ############### # find (do this twice) ############### # get pm topic! if (-e "$vars_config{MembersPath}/pm_topics/$in{d}/$in{t}.cgi") { require "$vars_config{MembersPath}/pm_topics/$in{d}/$in{t}.cgi"; } else { &StandardHTML("$vars_wordlets_err{no_such_pm}"); } ############### #Below that ADD ############### # set topic viewer: $go_to = "$vars_config{CGIURL}/ultimatebb.cgi?ubb=get_pm&d=$in{d}&t=$in{t}"; $i_frame_alt = &build_topic_review; if ($vars_display{InlineFrame} eq 'TRUE') { $i_frame = qq( ); } else { $i_frame = $i_frame_alt; } ################## ## Save and done ################## __________________________________________________________ But there is a Problem: When you select the radio "NO" in CP >"General Display Settings">Inline Frame View of Topic on Reply Page? the Hack doesn't work. Because in ubb_lib_posting.cgi "sub build_topic_review" is only for ubb_new_reply.cgi: So can someone add a sub such as "sub pm_review" for ubb_pm.cgi in ubb_lib_posting.cgi? Thank you Very much! ###################################################### See original hack at top of forum for further information, i didn't need to continue past this point.