HomeHelpTrac

Ignore:
Timestamp:
04/06/09 23:30:15 (3 years ago)
Author:
Andrey Prikaznov
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/inc/admin.inc.php

    r9984 r9985  
    372372        $get_parameters .= 'affID='. (int)$affID .'&'; 
    373373 
    374     $respd = db_res("SELECT * FROM `ProfileFields` WHERE `Type` <> 'none' ORDER BY `Type` ASC"); 
     374    $respd = db_res("SELECT * FROM `sys_profile_fields` WHERE `Type` <> 'none' ORDER BY `Type` ASC"); 
    375375    while ( $arrpd = mysql_fetch_array($respd) ) 
    376376    { 
     
    536536        $get_inputs .= '<input type="hidden" name="affID" value="'. (int)$affID .'" />'; 
    537537 
    538     $respd = db_res("SELECT * FROM `ProfileFields` WHERE `Type` <> 'none' ORDER BY `Type` ASC"); 
     538    $respd = db_res("SELECT * FROM `sys_profile_fields` WHERE `Type` <> 'none' ORDER BY `Type` ASC"); 
    539539    while ( $arrpd = mysql_fetch_array($respd) ) 
    540540    { 
     
    978978    db_res( "DELETE FROM `sys_block_list` WHERE `ID` = '{$ID}' OR `Profile` = '{$ID}'" ); 
    979979    db_res( "DELETE FROM `sys_profiles_track` WHERE `ID` = '{$ID}' OR `Profile` = '{$ID}'" ); 
    980     db_res( "DELETE FROM `Messages` WHERE Recipient = {$ID} " ); 
     980    db_res( "DELETE FROM `sys_messages` WHERE Recipient = {$ID} " ); 
    981981    db_res( "DELETE FROM `sys_aff_members` WHERE idProfile = {$ID}" ); 
    982982    db_res( "DELETE FROM `sys_fave_list` WHERE ID = {$ID} OR Profile = {$ID}" ); 
Note: See TracChangeset for help on using the changeset viewer.