|
|
|
|
Joined: Sep 2003
Posts: 488
Code Monkey
|
|
Code Monkey
Joined: Sep 2003
Posts: 488 |
Mod Name / Version: Delete Users From Address Book Fix Description: This is a fix which will allow you to delete users from your address book when selecting them from the drop-down menu and clicking the delete button on the sendprivate.php page. Working Under: UBB.Threads 6.3 Mod Status: Finished Any pre-requisites: Author(s): Twisty Date: 09/23/04 Credits: Files Altered: sendmessage.php New Files: Database Altered: no Info/Instructions: In sendmessage.php... CHANGE THIS: // ------------------------------------------------------ <br />// If they selected delete the name from the address book <br /> if ($textdelete) { <br /> if ($AddressBook != $ubbt_lang['CHOOSE_ADD']) { <br /> $Deleted = addslashes($AddressBook); <br /> $query = " <br /> DELETE FROM {$config['tbprefix']}AddressBook <br /> WHERE Add_Owner = '{$user['U_Number']}' <br /> AND Add_Member = '$Deleted' <br /> "; <br /> $dbh -> do_query($query); <br /> } <br /> header("Location: {$config['phpurl']}/sendprivate.php?Cat=$Cat&PHPSESSID=$PHPSESSID"); <br /> exit(); <br /> } TO THIS: // ------------------------------------------------------ <br />// If they selected delete the name from the address book <br /> if ($textdelete) { <br /> if ($AddressBook != $ubbt_lang['CHOOSE_ADD']) { <br /> $Deleted = addslashes($AddressBook); <br /> $query = " <br /> SELECT U_Number <br /> FROM {$config['tbprefix']}Users <br /> WHERE U_Username = '$Deleted' <br /> "; <br /> $sth = $dbh -> do_query($query); <br /> list ($Deletednumber) = $dbh -> fetch_array($sth); <br /> $dbh -> finish_sth($sth); <br /> $query = " <br /> DELETE FROM {$config['tbprefix']}AddressBook <br /> WHERE Add_Owner = '{$user['U_Number']}' <br /> AND Add_Member = '$Deletednumber' <br /> "; <br /> $dbh -> do_query($query); <br /> } <br /> header("Location: {$config['phpurl']}/sendprivate.php?Cat=$Cat&PHPSESSID=$PHPSESSID"); <br /> exit(); <br /> } Disclaimer: Please backup every file that you intend to modify. If the modification modifies the database, it's a good idea to backup your database before doing so. Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files.
|
|
|
|
Entire Thread
|
Finished-[6.3] Delete Users From Address Book Fix
|
Twisty
|
09/24/2004 5:42 AM
|
|
Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.
Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
|
|
Posts: 5,834
Joined: January 2000
|
|
|
Forums63
Topics37,583
Posts293,955
Members13,824
| |
Most Online151,614 Nov 14th, 2025
|
|
Currently Online 704
Topics Created 0
Posts Made 0
Users Online 0
Birthdays 16
|
|
|
|
|
|