Previous Thread
Next Thread
Print Thread
Rate Thread
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:

Code
// ------------------------------------------------------ <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:

Code
// ------------------------------------------------------ <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.

Sponsored Links
Entire Thread
Subject Posted By Posted
Finished-[6.3] Delete Users From Address Book Fix Twisty 09/24/2004 5:42 AM

Link Copied to Clipboard
Donate Today!
Donate via PayPal

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.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Shock Hosting
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Gizmo
Gizmo
Portland, OR, USA
Posts: 5,834
Joined: January 2000
Forum Statistics
Forums63
Topics37,583
Posts293,955
Members13,824
Most Online151,614
Nov 14th, 2025
Today's Statistics
Currently Online 704
Topics Created 0
Posts Made 0
Users Online 0
Birthdays 16
Top Posters
AllenAyres 21,080
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,834
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2026 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.1.0
(Snapshot build 20260108)