Ignore:
Timestamp:
Oct 1, 2010, 10:33:48 PM (14 years ago)
Author:
LucMorizur
Message:

[Event Cats] Remove all mysql_ instructions ; add <br /> into duplication.tpl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/event_cats/main.inc.php

    r7064 r7066  
    243243    ");
    244244    $insert = array();
    245     while ($row = mysql_fetch_assoc($result))
     245    while ($row = pwg_db_fetch_assoc($result))
    246246     $insert[] = "(".$new_user['id'].",".$row['cat_id'].")";
    247247    if (!empty($insert)) pwg_query("
     
    257257    ");
    258258    $insert = array();
    259     while ($row = mysql_fetch_assoc($result))
     259    while ($row = pwg_db_fetch_assoc($result))
    260260     $insert[] = "(".$new_user['id'].",".$row['group_id'].")";
    261261    if (!empty($insert)) pwg_query("
     
    271271    ");
    272272    $insert = array();
    273     while ($row = mysql_fetch_assoc($result))
     273    while ($row = pwg_db_fetch_assoc($result))
    274274     $insert[] = "(".$new_user['id'].",".$row['level'].")";
    275275    if (!empty($insert)) pwg_query("
Note: See TracChangeset for help on using the changeset viewer.