Changeset 523


Ignore:
Timestamp:
Sep 18, 2004, 6:05:15 PM (20 years ago)
Author:
z0rglub
Message:

deletion of rate lines when deleting an element

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions.php

    r521 r523  
    300300;';
    301301  mysql_query($query);
     302
     303  // destruction of the rates associated to this element
     304  $query = '
     305DELETE FROM '.RATE_TABLE.'
     306  WHERE element_id IN (
     307'.wordwrap(implode(', ', $ids), 80, "\n").')
     308;';
     309  mysql_query($query);
    302310               
    303311  // destruction of the image
Note: See TracChangeset for help on using the changeset viewer.