After uploading the new files and running the Update to the database, I began editing the files and ran into this issue:
#
#-----[ OPEN ]------------------------------------------------
#
privmsg.php
#
#-----[ FIND ]------------------------------------------------
#
$to_username = $HTTP_POST_VARS['username'];
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Start replacement - Custom mass PM MOD
$to_username_array = explode (";", $HTTP_POST_VARS['username']);
sort ($to_username_array);
foreach ($to_username_array as $name) $to_usernames .= "'".phpbb_clean_username($name)."',";
$to_usernames[strlen($to_usernames)-1]=" ";
// End replacement - Custom mass PM MOD
The line:
$to_username = $HTTP_POST_VARS['username'];
is NOT in my privmsg.php file.
I am using version 2.0.15.
Is this MOD compatible with this version?
If so, how do I edit this file?
If NOT, how do I remove the info I just added to the Database? (or do I have to)
thanks in advance for your help.
-dhd


